Removed 1 unnecessary stubbing in ThingManagerTest.java

This commit is contained in:
arus2023 2023-09-26 09:44:29 -05:00 committed by mia-li-z
parent 15a79bdd7e
commit b3f4328536
1 changed files with 0 additions and 1 deletions

View File

@ -61,7 +61,6 @@ public class ThingManagerTest {
ThingParser third = mock(ThingParser.class);
when(first.parse("thing")).thenReturn(null);
when(second.parse("thing")).thenReturn(thing);
when(third.parse("thing")).thenReturn(thing);
subject.register(first);
subject.register(second);
subject.register(third);