Skip to content

Commit

Permalink
Fix analysis failures in cloud_functions (firebase#1626)
Browse files Browse the repository at this point in the history
* Fix analysis failures
  • Loading branch information
collinjackson authored Dec 12, 2019
1 parent 5a7a1f5 commit 689cf35
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/cloud_functions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.1+6

* Fix analysis failures

## 0.4.1+5

* Remove the deprecated `author:` field from pubspec.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import 'package:flutter_test/flutter_test.dart';

import '../lib/main.dart';
import 'package:cloud_functions_example/main.dart';

void main() {
testWidgets('CloudFunctions example widget test',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import 'package:flutter_driver/flutter_driver.dart';
Future<void> main() async {
final FlutterDriver driver = await FlutterDriver.connect();
await driver.requestData(null, timeout: const Duration(minutes: 1));
driver.close();
await driver.close();
}
2 changes: 1 addition & 1 deletion packages/cloud_functions/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: cloud_functions
description: Flutter plugin for Cloud Functions.
version: 0.4.1+5
version: 0.4.1+6
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/cloud_functions

flutter:
Expand Down

0 comments on commit 689cf35

Please sign in to comment.