Skip to content

Commit

Permalink
chore: fix test imports
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikeForceZero committed Jan 21, 2025
1 parent e6298df commit 809cf91
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/nightly/ui/auto_plugin_already_registered.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use bevy_auto_plugin_macros::*;
use bevy_auto_plugin_macros::auto_plugin::*;


#[auto_plugin(app=_app)]
Expand Down
2 changes: 1 addition & 1 deletion tests/nightly/ui/auto_plugin_app_not_mutable.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use bevy_auto_plugin_macros::*;
use bevy_auto_plugin_macros::auto_plugin::*;

#[auto_plugin(app=_app)]
fn plugin(_app: &bevy_app::App) {}
Expand Down
2 changes: 1 addition & 1 deletion tests/nightly/ui/auto_plugin_missing_param.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use bevy_auto_plugin_macros::*;
use bevy_auto_plugin_macros::auto_plugin::*;

#[auto_plugin]
fn plugin(_app: &bevy_app::App) {}
Expand Down
2 changes: 1 addition & 1 deletion tests/nightly/ui/invalid_generics.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use bevy_auto_plugin_macros::*;
use bevy_auto_plugin_macros::auto_plugin::*;


#[auto_register_type(Test)]
Expand Down

0 comments on commit 809cf91

Please sign in to comment.