Skip to content

Commit

Permalink
fix(tests): defaultPersistedAttributes import
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzarbn committed Feb 15, 2024
1 parent 534a992 commit 708e6c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/stubs/models/tag.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Model } from '../../../src/model';
import Post from './post';
import { BelongsToMany } from '../../../src/drivers/default/relations/belongsToMany';
import { DefaultPersistedAttributes } from '../../../lib/types/defaultPersistedAttributes';
import { DefaultPersistedAttributes } from '../../../src/types/defaultPersistedAttributes';

export default class Tag extends Model<{
content: string;
Expand Down
2 changes: 1 addition & 1 deletion tests/stubs/models/user.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Model } from '../../../src/model';
import Post from './post';
import { HasMany } from '../../../src/drivers/default/relations/hasMany';
import { DefaultPersistedAttributes } from '../../../lib/types/defaultPersistedAttributes';
import { DefaultPersistedAttributes } from '../../../src/types/defaultPersistedAttributes';

export type UserAttributes = {
name: string;
Expand Down

0 comments on commit 708e6c0

Please sign in to comment.