Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippWendler committed Mar 1, 2024
1 parent ff2e017 commit 2217e9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,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 2217e9f

Please sign in to comment.