Skip to content

Commit

Permalink
Removed irrelevant test conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeharikv112 committed Dec 21, 2019
1 parent b3ac1f0 commit 6307315
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ class LoginRepositoryTest : BaseUTTest(){
val dataReceived = mRepo.getLoginData(mParam)

assertNotNull(dataReceived)
assert(dataReceived is AllPeople)
assertEquals(dataReceived.count, mCount)
assertEquals(dataReceived.next, mNextValue)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ class LoginUseCaseTest : BaseUTTest(){
val dataReceived = mLoginUseCase.processLoginUseCase(mParam)

assertNotNull(dataReceived)
assert(dataReceived is AllPeople)
assertEquals(dataReceived.count, mCount)
assertEquals(dataReceived.next, mNextValue)
}
Expand Down

0 comments on commit 6307315

Please sign in to comment.