Skip to content

Commit

Permalink
Fix imports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmielnik committed Apr 13, 2024
1 parent 6f7e6de commit a043a1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/nodeKeyComparator.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import nodeKeyComparator from './nodeKeyComparator';
import { nodeKeyComparator } from './nodeKeyComparator';

describe('nodeKeyComparator', () => {
it('Gives same result for all permutations when used for sorting', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/remove.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Node } from '../types';

import remove from './remove';
import { remove } from './remove';

describe('remove', () => {
it('Removes empty string', () => {
Expand Down

0 comments on commit a043a1e

Please sign in to comment.