Skip to content

Commit

Permalink
Satisfy stable clippy.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Sep 18, 2019
1 parent 86a6d94 commit f6b8a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amethyst_test/src/wait_for_load.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ mod tests {
.with_system(Processor::<TestAsset>::new(), "test_asset_processor", &[])
.with_effect(|world| {
let mut in_memory_source = InMemorySource::new();
in_memory_source.insert(String::from("file.ron"), "(val: 123)".as_bytes().to_vec());
in_memory_source.insert(String::from("file.ron"), b"(val: 123)".to_vec());

let mut loader = world.write_resource::<Loader>();
loader.add_source(IN_MEMORY_SOURCE_ID, in_memory_source);
Expand Down

0 comments on commit f6b8a76

Please sign in to comment.