Skip to content

Commit e9898e4

Browse files
committed
Fix tests
1 parent f39d65b commit e9898e4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/public-queries.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { setupDatabase, createAnonymousGraphqlFetch, disconnect } from './helpers.js';
2-
import { SimpleProduct2, SimpleProduct } from './seeds/products.js';
2+
import { SimpleProduct } from './seeds/products.js';
33
import assert from 'node:assert';
44
import test from 'node:test';
55

@@ -31,7 +31,7 @@ test.describe('Public Queries', () => {
3131

3232
const [product] = data.products;
3333
assert.deepStrictEqual(product, {
34-
_id: SimpleProduct2._id,
34+
_id: SimpleProduct._id,
3535
});
3636
});
3737

0 commit comments

Comments
 (0)