Committed by
Gerrit Code Review
Remove unnecessary reference to this
Change-Id: I1913041fc71169dc69ffd1243663b6304f4dc7ec
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -773,8 +773,8 @@ public class GroupManagerTest { | ... | @@ -773,8 +773,8 @@ public class GroupManagerTest { |
773 | } | 773 | } |
774 | 774 | ||
775 | assertEquals(lastDeviceIdProgrammable, expectedDeviceId); | 775 | assertEquals(lastDeviceIdProgrammable, expectedDeviceId); |
776 | - assertTrue((this.groupOperations.containsAll(expectedGroupOps) && | 776 | + assertTrue(groupOperations.containsAll(expectedGroupOps) && |
777 | - expectedGroupOps.containsAll(groupOperations))); | 777 | + expectedGroupOps.containsAll(groupOperations)); |
778 | 778 | ||
779 | groupOperations.clear(); | 779 | groupOperations.clear(); |
780 | lastDeviceIdProgrammable = null; | 780 | lastDeviceIdProgrammable = null; | ... | ... |
-
Please register or login to post a comment