Skip to content

Commit c23751c

Browse files
committed
Use shorter names for tests
1 parent 5edc147 commit c23751c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/scene.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use serde::{Deserialize, Serialize};
44
use test_log::test;
55

66
#[test]
7-
fn replicated_entity() {
7+
fn replicated() {
88
let mut app = App::new();
99
app.add_plugins((StatesPlugin, RepliconPlugins))
1010
.register_type::<TestComponent>()
@@ -52,7 +52,7 @@ fn replicated_entity() {
5252
}
5353

5454
#[test]
55-
fn empty_entity() {
55+
fn empty() {
5656
let mut app = App::new();
5757
app.add_plugins((StatesPlugin, RepliconPlugins)).finish();
5858

@@ -71,7 +71,7 @@ fn empty_entity() {
7171
}
7272

7373
#[test]
74-
fn not_replicated_entity() {
74+
fn not_replicated() {
7575
let mut app = App::new();
7676
app.add_plugins((StatesPlugin, RepliconPlugins))
7777
.register_type::<TestComponent>()
@@ -88,7 +88,7 @@ fn not_replicated_entity() {
8888
}
8989

9090
#[test]
91-
fn entity_update() {
91+
fn update_existing() {
9292
let mut app = App::new();
9393
app.add_plugins((StatesPlugin, RepliconPlugins))
9494
.register_type::<TestComponent>()

0 commit comments

Comments
 (0)