Skip to content

Commit

Permalink
test: fix db test
Browse files Browse the repository at this point in the history
  • Loading branch information
eseidel committed Feb 22, 2024
1 parent 24dbb00 commit 40c2c01
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/db/test/db_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,7 @@ void main() {
db.insertTransaction(transaction);
verify(
() => connection.execute(
'INSERT INTO transaction_ (transaction_type, ship_symbol, '
'waypoint_symbol, trade_symbol, ship_type, quantity, trade_type, '
'per_unit_price, timestamp, agent_credits, accounting) '
'VALUES (@transaction_type, @ship_symbol, @waypoint_symbol, '
'@trade_symbol, @ship_type, @quantity, @trade_type, @per_unit_price, '
'@timestamp, @agent_credits, @accounting)',
any(),
parameters: transactionToColumnMap(transaction),
),
).called(1);
Expand Down

0 comments on commit 40c2c01

Please sign in to comment.