Skip to content

Commit

Permalink
[server] Fix flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
geropl committed Oct 4, 2023
1 parent 02b91a7 commit e846327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/gitpod-db/src/auth-provider-entry.spec.db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe("AuthProviderEntryDBSpec", async () => {
await db.storeAuthProvider(ap2, false);

const all = await db.findAllHosts();
expect(all, "findAllHosts([])").to.deep.equal(["foo", "bar"]);
expect(all.sort(), "findAllHosts([])").to.deep.equal(["foo", "bar"].sort());
});

it("should oauthRevision", async () => {
Expand Down

0 comments on commit e846327

Please sign in to comment.