Skip to content

Commit

Permalink
regen to make sure
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts committed May 10, 2022
1 parent 3797c21 commit 1ca1d34
Showing 1 changed file with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,6 @@ void assignUserIdTest0() {
JSONCompareMode.STRICT_ORDER
);
});

Map<String, String> expectedQuery = JSON.deserialize(
"{\"X-Algolia-User-ID\":\"userID\"}",
new TypeToken<HashMap<String, String>>() {}.getType()
);
Map<String, String> actualQuery = req.getQueryParams();
assertEquals(expectedQuery.size(), actualQuery.size());
for (Map.Entry<String, String> p : actualQuery.entrySet()) {
assertEquals(expectedQuery.get(p.getKey()), p.getValue());
}
}

@Test
Expand Down Expand Up @@ -237,16 +227,6 @@ void batchAssignUserIdsTest0() {
JSONCompareMode.STRICT_ORDER
);
});

Map<String, String> expectedQuery = JSON.deserialize(
"{\"X-Algolia-User-ID\":\"userID\"}",
new TypeToken<HashMap<String, String>>() {}.getType()
);
Map<String, String> actualQuery = req.getQueryParams();
assertEquals(expectedQuery.size(), actualQuery.size());
for (Map.Entry<String, String> p : actualQuery.entrySet()) {
assertEquals(expectedQuery.get(p.getKey()), p.getValue());
}
}

@Test
Expand Down

0 comments on commit 1ca1d34

Please sign in to comment.