Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix test
Browse files Browse the repository at this point in the history
djbarnwal committed Sep 13, 2023
1 parent da975ad commit 0ffb9fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web-common/src/features/dashboards/time-series/utils.spec.ts
Original file line number Diff line number Diff line change
@@ -87,7 +87,10 @@ describe("getFilterForComparedDimension", () => {
);

expect(result.updatedFilter).toEqual({
include: [{ name: "country", in: ["US", "IN", "CN"] }],
include: [
{ name: "company", in: ["zoom"] },
{ name: "country", in: ["US", "IN", "CN"] },
],
exclude: [{ name: "device", in: ["mobile"] }],
});
});

0 comments on commit 0ffb9fc

Please sign in to comment.