Skip to content

Commit

Permalink
Use more clear names for tests [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Shatur committed Feb 15, 2025
1 parent e6f6712 commit 900eabb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/server/replication_read_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ mod tests {

#[test]
#[should_panic]
fn world_transform_mut() {
fn world_then_query() {
let mut app = App::new();
app.init_resource::<ReplicationRules>()
.init_resource::<ReplicationRegistry>()
Expand All @@ -141,7 +141,7 @@ mod tests {

#[test]
#[should_panic]
fn transform_mut_world() {
fn query_then_world() {
let mut app = App::new();
app.init_resource::<ReplicationRules>()
.init_resource::<ReplicationRegistry>()
Expand All @@ -155,7 +155,7 @@ mod tests {
}

#[test]
fn world_transform_ref() {
fn world_then_readonly_query() {
let mut app = App::new();
app.init_resource::<ReplicationRules>()
.init_resource::<ReplicationRegistry>()
Expand Down

0 comments on commit 900eabb

Please sign in to comment.