Skip to content

Commit 708e6c0

Browse files
committed
fix(tests): defaultPersistedAttributes import
1 parent 534a992 commit 708e6c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/stubs/models/tag.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Model } from '../../../src/model';
22
import Post from './post';
33
import { BelongsToMany } from '../../../src/drivers/default/relations/belongsToMany';
4-
import { DefaultPersistedAttributes } from '../../../lib/types/defaultPersistedAttributes';
4+
import { DefaultPersistedAttributes } from '../../../src/types/defaultPersistedAttributes';
55

66
export default class Tag extends Model<{
77
content: string;

tests/stubs/models/user.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Model } from '../../../src/model';
22
import Post from './post';
33
import { HasMany } from '../../../src/drivers/default/relations/hasMany';
4-
import { DefaultPersistedAttributes } from '../../../lib/types/defaultPersistedAttributes';
4+
import { DefaultPersistedAttributes } from '../../../src/types/defaultPersistedAttributes';
55

66
export type UserAttributes = {
77
name: string;

0 commit comments

Comments
 (0)