Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 5f20831

Browse files
vicbvsavkin
authored andcommitted
test(parser_spec): fix analyzer warnings
Closes #1430
1 parent 7e0152c commit 5f20831

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/core/parser/parser_spec.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ toBool(x) => (x is num) ? x != 0 : x == true;
4949
main() {
5050
describe('parse', () {
5151
Map<String, dynamic> context;
52-
Parser<Expression> parser;
52+
Parser parser;
5353
FormatterMap formatters;
5454

5555
beforeEachModule((Module module) {
@@ -157,7 +157,7 @@ main() {
157157
});
158158

159159
describe('error handling', () {
160-
Parser<Expression> parser;
160+
Parser parser;
161161

162162
beforeEach((Parser p) {
163163
parser = p;

0 commit comments

Comments
 (0)