Skip to content

Commit

Permalink
tiny fix
Browse files Browse the repository at this point in the history
  • Loading branch information
codekeyz committed Mar 5, 2024
1 parent 38ae288 commit f1afab5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/yaroorm/test/integration/fixtures/migrator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ Future<void> runMigrator(String connectionName, String command) async {
print('> dart ${commands.join(' ')}\n');

final result = await Process.run('dart', commands);
stderr.write("""--------------------------------------------
\n${result.stderr}\n
--------------------------------------------""");
stderr.write(result.stderr);

expect(result.exitCode, 0);
}

0 comments on commit f1afab5

Please sign in to comment.