Skip to content

Commit

Permalink
Update test-gc-fetch.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhrajghuman committed Jun 21, 2020
1 parent 10ef5d9 commit 240e67a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/test/test-gc-fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe("Test redis", () => {
it("Still returns data if JSON parse fails and then replaces it", async () => {
redis_client.set("screen_res", "blabla");
const data = await fetchGCdata(filePath, redis_client, "screen_res");
expect(data).to.have.length(72);
expect(data).to.have.length(132);
const redis_data_after_request = await getAsync("screen_res");
const parsed = JSON.parse(redis_data_after_request);
expect(data).to.eql(parsed);
Expand Down

0 comments on commit 240e67a

Please sign in to comment.