Skip to content

Commit 0c47967

Browse files
committed
chore: type issue in tests
1 parent 67a4db8 commit 0c47967

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/internal/useMultiLoadingValue.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { newSymbol } from "../__testfixtures__";
33
import { useMultiLoadingValue } from "./useMultiLoadingValue";
44
import { it, expect, describe } from "vitest";
55

6-
const value1 = newSymbol("Value 1");
7-
const value2 = newSymbol("Value 2");
6+
const value1 = newSymbol<symbol>("Value 1");
7+
const value2 = newSymbol<symbol>("Value 2");
88
const error1 = newSymbol("Error 1");
99
const error2 = newSymbol("Error 2");
1010

0 commit comments

Comments
 (0)