Skip to content

Commit e6387cf

Browse files
vicbrkirov
authored andcommitted
fix(test): remove at trailing "," in JS object literal
1 parent ecf73cc commit e6387cf

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

test_transformers/relative_uris_spec.dart

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ main() {
88
var ptor = protractor.getInstance().get('index.html');
99
var test_div = element(by.id('test_div'));
1010
expect(test_div.isPresent()).toEqual(true);
11-
expect(test_div.getText()).toEqual(
12-
'Why hello there, Relative Foo...');
11+
expect(test_div.getText()).toEqual('Why hello there, Relative Foo...');
1312
});
1413
});
1514
}

test_transformers/transformersE2eConf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var config = {
2727
showColors: true, // print colors to the terminal.
2828
includeStackTrace: true, // include stack traces in failures.
2929
defaultTimeoutInterval: 80000 // wait time in ms before failing a test.
30-
},
30+
}
3131
};
3232

3333
configQuery.updateConfigForBrowsers(config, process.env.BROWSERS.split(","), 1);

test_transformers/web/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
library animation;
1+
library angular.test_transformers.relative_uris;
22

33
import 'package:angular/angular.dart';
44
import 'package:angular/application_factory.dart';

0 commit comments

Comments
 (0)