Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
elringus committed Mar 31, 2024
1 parent 254590e commit e06d6bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v4

- name: Check formatting
run:
run: |
cd crates
rustup component add fmt
cargo fmt --all -- --check
Expand Down
4 changes: 2 additions & 2 deletions crates/lib/src/fs/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ mod tests {
uvs: vec![Uv::new(0.1, 0.2), Uv::new(0.3, 0.4)],
indices: vec![1, 2, 3],
rect: Rect::new(0.5, 0.5, 100.0, 50.0),
pivot: Pivot::new(0.0, 0.0),
pivot: Pivot::new(0.0, 0.0)
},
DicedSprite {
id: "img".to_owned(),
Expand All @@ -73,7 +73,7 @@ mod tests {
uvs: vec![Uv::new(0.01, 0.02)],
indices: vec![0],
rect: Rect::new(-1.5, 0.0, 0.0, 10.10),
pivot: Pivot::new(0.0, 0.0),
pivot: Pivot::new(0.0, 0.0)
},
];
assert_eq!(
Expand Down

0 comments on commit e06d6bc

Please sign in to comment.