Skip to content

Commit

Permalink
fixed typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Machekhin committed Mar 3, 2024
1 parent 8510200 commit 6dcc124
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/guards.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import {
$not,
$every,
$some,
isAny,
} from '../src';

import { test, expect } from 'vitest';
Expand Down Expand Up @@ -336,7 +337,7 @@ describe('Guards runtime tests', () => {
failed: [],
}),
)('should check on Any - %s', (value, expected) => {
expect(isSymbol(value)).toBe(expected);
expect(isAny(value)).toBe(expected);
});
});

Expand Down

0 comments on commit 6dcc124

Please sign in to comment.