Removed error line from the file

This commit is contained in:
Urvy Agrawal 2019-01-28 13:28:22 +05:30
parent 13f9b875b8
commit e5c860192a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ public class BitwiseOperatorUnitTest {
int value1 = 6;
int value2 = 5;
int result = value1 ^ value2;
assertEquals(3 result);
assertEquals(3, result);
}
@Test