Skip to content

Commit 00f2842

Browse files
committed
Fix internal imports
1 parent 81d02c5 commit 00f2842

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/render_asset_leaks.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ use bevy::{
99
audio::AudioPlugin,
1010
color::Color,
1111
diagnostic::{DiagnosticsStore, LogDiagnosticsPlugin},
12-
ecs::system::{Res, ResMut},
12+
ecs::{
13+
resource::Resource,
14+
system::{Commands, Res, ResMut},
15+
},
1316
math::primitives::Sphere,
1417
pbr::{
1518
diagnostic::MaterialAllocatorDiagnosticPlugin, Material, PreparedMaterial, StandardMaterial,
@@ -22,7 +25,6 @@ use bevy::{
2225
winit::WinitPlugin,
2326
DefaultPlugins,
2427
};
25-
use bevy_ecs::{resource::Resource, system::Commands};
2628

2729
#[test]
2830
fn check_mesh_leak() {

0 commit comments

Comments
 (0)