Skip to content

Commit f63aac9

Browse files
Fix failing test
Co-authored-by: Daniel Gallups <[email protected]>
1 parent d774daa commit f63aac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_plugin/tests/test_strings_tables.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ fn appends_to_pre_existing_strings_file() -> anyhow::Result<()> {
175175
.world()
176176
.resource::<AssetServer>()
177177
.get_load_state(&handle)
178-
.is_some_and(|state| state.is_loaded())
178+
.is_none_or(|state| !state.is_loaded())
179179
{
180180
app.update();
181181
}

0 commit comments

Comments
 (0)