Skip to content

Commit 3726ec8

Browse files
committed
test: update desc
1 parent 16bf793 commit 3726ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/hooks/src/useControlledState/__tests__/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe('useControlledState', () => {
5353
const warnSpy = vi.spyOn(console, 'warn').mockImplementation(() => { });
5454
setValue((prev: number) => prev + 1);
5555
expect(warnSpy).toHaveBeenCalledWith(
56-
'Function callbacks are not supported. See: https://github.com/adobe/react-spectrum/issues/2320'
56+
'Function callbacks are not supported.'
5757
);
5858
expect(state.value).toBe(2);
5959
expect(onChange).toHaveBeenCalledWith(2);

0 commit comments

Comments
 (0)