@@ -11,12 +11,12 @@ void main() {
11
11
'dart' , ['run' , 'bin/txt2rfw.dart' , "test/test.rfwtxt" ]);
12
12
await process.stdout.transform (utf8.decoder).forEach (print);
13
13
await process.stderr.transform (utf8.decoder).forEach (print);
14
- File resultFile = File ('test/match.rfw' );
14
+ File matchFile = File ('test/match.rfw' );
15
15
File outputFile = File ('test.rfw' );
16
16
expect (outputFile.existsSync (), true );
17
17
expect (
18
18
ListEquality ()
19
- .equals (resultFile .readAsBytesSync (), resultFile .readAsBytesSync ()),
19
+ .equals (matchFile .readAsBytesSync (), matchFile .readAsBytesSync ()),
20
20
true );
21
21
22
22
outputFile.delete ();
@@ -27,12 +27,12 @@ void main() {
27
27
['run' , 'bin/txt2rfw.dart' , "test/test.rfwtxt" , "-o" , "test.rfw" ]);
28
28
await process.stdout.transform (utf8.decoder).forEach (print);
29
29
await process.stderr.transform (utf8.decoder).forEach (print);
30
- File resultFile = File ('test/match.rfw' );
30
+ File matchFile = File ('test/match.rfw' );
31
31
File outputFile = File ('test.rfw' );
32
32
expect (outputFile.existsSync (), true );
33
33
expect (
34
34
ListEquality ()
35
- .equals (resultFile .readAsBytesSync (), resultFile .readAsBytesSync ()),
35
+ .equals (matchFile .readAsBytesSync (), matchFile .readAsBytesSync ()),
36
36
true );
37
37
38
38
outputFile.delete ();
0 commit comments