comment out currently unneeded hive test init

This commit is contained in:
julian 2022-08-26 11:00:13 -06:00
parent 7fa827cbc6
commit 647f1c69bc

View file

@ -1,14 +1,14 @@
import 'package:flutter_test/flutter_test.dart'; // import 'package:flutter_test/flutter_test.dart';
import 'package:hive_test/hive_test.dart'; // import 'package:hive_test/hive_test.dart';
void main() { void main() {
setUp(() async { // setUp(() async {
await setUpTestHive(); // await setUpTestHive();
}); // });
//
// no migration to test yet // // no migration to test yet
//
tearDown(() async { // tearDown(() async {
await tearDownTestHive(); // await tearDownTestHive();
}); // });
} }