Fixed warnings on products_it_test.dart

This commit is contained in:
Gianfranco Gasbarri 2020-05-13 23:13:33 +01:00
parent 6158db59cc
commit 6aa409ce9c
1 changed files with 2 additions and 3 deletions

View File

@ -16,12 +16,11 @@ void runTestSuite({bool batchMode = false}) {
final productKey = makeUnique(faker.food.cuisine());
final description = faker.food.dish();
final cost = faker.randomGenerator.decimal(min: 50).toStringAsFixed(2);
//final cost = faker.randomGenerator.decimal(min: 50).toStringAsFixed(2);
final updatedProductKey = makeUnique(faker.food.cuisine());
final updatedDescription = faker.food.dish();
final updatedCost =
faker.randomGenerator.decimal(min: 50).toStringAsFixed(2);
//final updatedCost = faker.randomGenerator.decimal(min: 50).toStringAsFixed(2);
setUpAll(() async {
localization = TestLocalization('en');