Skip to content

Commit

Permalink
Rebase previous commits (flutter#2966)
Browse files Browse the repository at this point in the history
* [battery] Fixed typo in README.md (flutter#2944)

* [integration_test] Remove debugging statement (flutter#2963)

Co-authored-by: Yash Johri <yashjohri1200@gmail.com>
  • Loading branch information
2 people authored and jorgefspereira committed Oct 10, 2020
1 parent 8ea5c1e commit 9b9262e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/battery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.4

* Updated README.md.

## 1.0.3

* Update package:e2e to use package:integration_test
Expand Down
4 changes: 2 additions & 2 deletions packages/battery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ To use this plugin, add `battery` as a [dependency in your pubspec.yaml file](ht
import 'package:battery/battery.dart';
// Instantiate it
var battery = Battery();
var _battery = Battery();
// Access current battery level
print(await battery.batteryLevel);
print(await _battery.batteryLevel);
// Be informed when the state (full, charging, discharging) changes
_battery.onBatteryStateChanged.listen((BatteryState state) {
Expand Down
2 changes: 1 addition & 1 deletion packages/battery/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: battery
description: Flutter plugin for accessing information about the battery state
(full, charging, discharging) on Android and iOS.
homepage: https://github.com/flutter/plugins/tree/master/packages/battery
version: 1.0.3
version: 1.0.4

flutter:
plugin:
Expand Down
1 change: 0 additions & 1 deletion packages/integration_test/lib/integration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class IntegrationTestWidgetsFlutterBinding
IntegrationTestWidgetsFlutterBinding() {
// TODO(jackson): Report test results as they arrive
tearDownAll(() async {
print('TESTING123: TEARING HER DOWN');
try {
// For web integration tests we are not using the
// `plugins.flutter.io/integration_test`. Mark the tests as complete
Expand Down

0 comments on commit 9b9262e

Please sign in to comment.