Skip to content

Commit

Permalink
Removing unused test variables
Browse files Browse the repository at this point in the history
  • Loading branch information
navarhontes committed Aug 14, 2023
1 parent 6f8d258 commit 0d89196
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ public ArrayList<MatchListDsResponseModel> readUserIdAndDisplayNames(ArrayList<S
@Test
public void testGetDisplayNamesForMatches() {
// Tests tht getDisplayNamesForMatches returns display names in userId match list
ArrayList<String> matchList = new ArrayList<>();
ArrayList<String> likeList = new ArrayList<>();
MatchListDsGateway matchListDsGateway = new MatchListInteractorUnitTest.MockMatchListDsGateway(
DISPLAY_NAME_2);
MatchListInteractor matchListInteractor = new MatchListInteractor(matchListDsGateway);
Expand All @@ -57,8 +55,6 @@ public void testGetDisplayNamesForMatches() {
@Test
public void testGetDisplayNamesForMatchesReversed() {
// Tests tht getDisplayNamesForMatches returns display names in otherUserId match list
ArrayList<String> matchList = new ArrayList<>();
ArrayList<String> likeList = new ArrayList<>();
MatchListDsGateway matchListDsGateway = new MatchListInteractorUnitTest.MockMatchListDsGateway(
DISPLAY_NAME_1);
MatchListInteractor matchListInteractor = new MatchListInteractor(matchListDsGateway);
Expand Down

0 comments on commit 0d89196

Please sign in to comment.