Skip to content

Commit e846327

Browse files
committed
[server] Fix flaky test
1 parent 02b91a7 commit e846327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/gitpod-db/src/auth-provider-entry.spec.db.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ describe("AuthProviderEntryDBSpec", async () => {
7373
await db.storeAuthProvider(ap2, false);
7474

7575
const all = await db.findAllHosts();
76-
expect(all, "findAllHosts([])").to.deep.equal(["foo", "bar"]);
76+
expect(all.sort(), "findAllHosts([])").to.deep.equal(["foo", "bar"].sort());
7777
});
7878

7979
it("should oauthRevision", async () => {

0 commit comments

Comments
 (0)