Skip to content

Commit

Permalink
Update tests for reconciliation precheck
Browse files Browse the repository at this point in the history
This updates the DBD::Mock harness to reflect changes to the
reconciliation report migration pre-check sql.
  • Loading branch information
nick-prater committed Feb 1, 2020
1 parent 948eca0 commit f09911e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/16-prechecks/1.8/explicit-reconciliation.precheck
Expand Up @@ -9,13 +9,13 @@
submit_session =>
[
{
statement => q{DELETE FROM cr_report_line WHERE report_id IN ?},
# bound_params => [ [ 22 ] ], can't check bound arrays..
statement => q{DELETE FROM cr_report_line WHERE report_id = ?},
bound_params => [ 22 ],
results => [],
},
{
statement => q{DELETE FROM cr_report WHERE id IN ?},
# bound_params => [ [ 22 ] ], can't check bound arrays..
statement => q{DELETE FROM cr_report WHERE id = ?},
bound_params => [ 22 ],
results => [],
},
],
Expand Down

0 comments on commit f09911e

Please sign in to comment.