Skip to content

Commit fef1cbb

Browse files
committed
Fix ensure_build_test
Fixes #55
1 parent 89bef38 commit fef1cbb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

json_serializable/test/ensure_build_test.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,10 @@ void main() {
6767
expect(_changedGeneratedFiles(), isEmpty);
6868

6969
// 2 - run build - should be no output, since nothing should change
70-
var result = _runProc('pub',
71-
['run', 'build_runner', 'build', '--delete-conflicting-outputs']);
70+
var result =
71+
_runProc('tool/build.dart', ['build', '--delete-conflicting-outputs']);
72+
73+
print(result);
7274
expect(result,
7375
contains(new RegExp(r'\[INFO\] Succeeded after \S+ with \d+ outputs')));
7476

0 commit comments

Comments
 (0)