Skip to content

Commit

Permalink
Fix for exercise 10 test
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Feb 10, 2018
1 parent 5f63178 commit 0347a94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ex010.transactions-table.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ class TransactionsTableTest {
sql`SELECT name FROM sqlite_master WHERE type='table'`
)).map(i => i.name);
assert.includeMembers(
allTables,
['Transaction'],
allTables.map(t => t.toLowerCase()),
['transaction'],
'Transaction table is found'
);
}
Expand Down

0 comments on commit 0347a94

Please sign in to comment.