Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
EshaanAgg committed Mar 2, 2024
1 parent 0432869 commit 5b9e2c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ describe("hashRouting helpers", () => {
describe("decodeFilter", () => {
test("should decode filter correctly", () => {
const filter = "0_cputime_1";
const expected = { tool: 0, name: "cputime", column: 1 };
const expected = { tool: "0", name: "cputime", column: "1" };
expect(decodeFilter(filter)).toEqual(expected);
});

Expand Down

0 comments on commit 5b9e2c5

Please sign in to comment.