Skip to content

Commit

Permalink
ci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jabuwu committed Apr 25, 2024
1 parent b2dd140 commit 5cf9be0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/3d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ fn controls(
}

#[derive(Component)]
pub struct Spine3DMaterial(StandardMaterial);
pub struct Spine3DMaterial;

impl SpineMaterial for Spine3DMaterial {
type Material = StandardMaterial;
Expand Down
2 changes: 1 addition & 1 deletion src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub fn test_app_with_spineboy() -> App {
fn spawn() {
let mut app = test_app_with_spineboy();
app.add_systems(Update, |spine_query: Query<&Spine>| {
assert_eq!(spine_query.single().skeleton.data().hash(), "itfFESDjM1c");
assert_eq!(spine_query.single().skeleton.data().hash(), "pvgSVWzpY9U");
});
app.update();
}

0 comments on commit 5cf9be0

Please sign in to comment.