@Test
public void should_not_update_notify_on_too_long() throws Exception {
String oldNotifyUrl = restmcu.getBoardResource().getBoardSettings().getNotifyUrl();
String notifyUrl = "http://127.0.0.1/genre/styledfkldfmldkfmldskfmdskfmdsfmskdmfksdmfsmfgpgkpkpkfdpbkfdpbkfdp";
RestMcuBoardSettings boardSettings = new RestMcuBoardSettings();
boardSettings.setNotifyUrl(notifyUrl);
boolean exceptionflag = false;
try {
restmcu.getBoardResource().setBoardSettings(boardSettings);
} catch (RestMcuUpdateException e) {
exceptionflag = true;