Nick Satinover 6 anni fa
parent
commit
40930c65c6

+ 1
- 1
src/test/java/rocks/zipcode/io/quiz3/collections/student/ToStringTest.java Vedi File

@@ -36,7 +36,7 @@ public class ToStringTest {
36 36
         Student student = new Student();
37 37
         LabStatus completed = LabStatus.valueOf("COMPLETED");
38 38
         LabStatus incomplete = LabStatus.valueOf("INCOMPLETE");
39
-        String expected = "casino > COMPLETED\nlearner lab > INCOMPLETE";
39
+        String expected = "learner lab > INCOMPLETE\ncasino > COMPLETED";
40 40
 
41 41
         // when
42 42
         student.forkLab(learnerLab);