File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/de/doubleslash/keeptime/view Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public void testAppendToWorkNotesAddNumberOfNotes() {
5555 this .uut .appendToWorkNotes ("note 1 " );
5656 this .uut .appendToWorkNotes (EMPTY_NOTE );
5757 this .uut .appendToWorkNotes ("note 2 " );
58- final String expected = "3 Notes: note 1; note 2" ;
58+ final String expected = "note 1; note 2" ;
5959 assertEquals (expected , this .uut .getNotes ());
6060 }
6161
@@ -65,7 +65,7 @@ public void testAppendToWorkNotesAddNumberOfNotes_2() {
6565 this .uut .appendToWorkNotes ("note 1" );
6666 this .uut .appendToWorkNotes ("note 2" );
6767 this .uut .appendToWorkNotes ("note 3" );
68- final String expected = "3 Notes: note 1; note 2; note 3" ;
68+ final String expected = "note 1; note 2; note 3" ;
6969 assertEquals (expected , this .uut .getNotes ());
7070 }
7171
@@ -76,7 +76,7 @@ public void testAppendToWorkNotesAddNumberOfNotes_EmptyNotesAtTheEnd() {
7676 this .uut .appendToWorkNotes ("note 2" );
7777 this .uut .appendToWorkNotes (EMPTY_NOTE );
7878 this .uut .appendToWorkNotes (EMPTY_NOTE );
79- final String expected = "4 Notes: note 1; note 2" ;
79+ final String expected = "note 1; note 2" ;
8080 assertEquals (expected , this .uut .getNotes ());
8181 }
8282
You can’t perform that action at this time.
0 commit comments