We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e40c7c commit 2c3809bCopy full SHA for 2c3809b
t/db_dependent/Koha/SIP2/SIP2ModuleMigration.t
@@ -48,7 +48,8 @@ subtest 'Config from XML matches config from database' => sub {
48
is( scalar( keys %{ $fileSIPconfig->{accounts} } ), 5, 'fileSIPconfig->{accounts} has 5 members' );
49
is( Koha::SIP2::Accounts->search()->count, 0, 'Database does not yet contain any accounts' );
50
51
- run_atomic_updates( ['bug_37893.pl'] ); #TODO: Update this to the DBREV when pushed
+ my $db_rev_file = C4::Context->config('intranetdir') . '/installer/data/mysql/db_revs/250600035.pl';
52
+ C4::Installer::run_db_rev($db_rev_file);
53
54
is( Koha::SIP2::Accounts->search()->count, 5, 'Database now contains 5 accounts' );
55
0 commit comments