Skip to content

Commit

Permalink
Revert "[Tests] Make test pass. Revert this change once the next upda…
Browse files Browse the repository at this point in the history
…te drops"

This reverts commit 30f9754.
  • Loading branch information
Wolfteam committed Sep 9, 2022
1 parent 7ad7869 commit b60118f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/application/home/home_bloc_test.dart
Expand Up @@ -61,7 +61,7 @@ void main() {
checkAsset(material.image);
expect(material.days, isNotEmpty);
expect(material.days.every((day) => _expectedDays.contains(day)), isTrue);
checkItemsCommon(material.characters, checkEmpty: false);
checkItemsCommon(material.characters);
}

for (final material in state.weaponAscMaterials) {
Expand Down
2 changes: 1 addition & 1 deletion test/infrastructure/file/character_file_service_test.dart
Expand Up @@ -335,7 +335,7 @@ void main() {
checkKey(material.key);
checkAsset(material.image);
expect(material.name, allOf([isNotNull, isNotEmpty]));
//expect(material.characters, isNotEmpty);
expect(material.characters, isNotEmpty);
expect(material.days, isNotEmpty);
for (final item in material.characters) {
checkItemCommon(item);
Expand Down

0 comments on commit b60118f

Please sign in to comment.