Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Commit

Permalink
Fix Dart 2 runtime failures in tests (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 authored May 2, 2018
1 parent 595cfc0 commit 0ab6f13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Don’t commit the following directories created by pub.
.buildlog
.pub/
.dart_tool/
build/
packages
.packages
Expand Down
4 changes: 2 additions & 2 deletions test/authorization_code_grant_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import 'utils.dart';
final redirectUrl = Uri.parse('http://example.com/redirect');

void main() {
var client;
var grant;
ExpectClient client;
oauth2.AuthorizationCodeGrant grant;
setUp(() {
client = new ExpectClient();
grant = new oauth2.AuthorizationCodeGrant(
Expand Down

0 comments on commit 0ab6f13

Please sign in to comment.