Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryfan01234 committed Aug 30, 2024
1 parent 2cb463e commit bd53c2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { clearData, migrate, teardown } from '../../src/helpers/db-helpers';
import { defaultAffiliateInfo, defaultAffiliateInfo1 } from '../helpers/constants';
import * as AffiliateInfoTable from '../../src/stores/affiliate-info-table';

describe('Persistent cache store', () => {
describe('Affiliate info store', () => {
beforeAll(async () => {
await migrate();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export async function up(knex: Knex): Promise<void> {
}

export async function down(knex: Knex): Promise<void> {
return knex.schema.dropTable('persistent_cache');
return knex.schema.dropTable('affiliate_info');
}

0 comments on commit bd53c2f

Please sign in to comment.