Skip to content

Commit

Permalink
refactor: rename 'utilies.rs' to 'utilities.rs'
Browse files Browse the repository at this point in the history
  • Loading branch information
ShenMian committed Apr 10, 2024
1 parent 2c0373d commit b4dcf9a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions tests/deadlock.rs
@@ -1,7 +1,7 @@
use soukoban::deadlock::*;

mod utilies;
use utilies::*;
mod utilities;
use utilities::*;

#[test]
fn test_calculate_dead_positions() {
Expand Down
4 changes: 2 additions & 2 deletions tests/level.rs
Expand Up @@ -3,8 +3,8 @@ use std::{fs, str::FromStr};
use indoc::indoc;
use soukoban::{Level, ParseLevelError, ParseMapError};

mod utilies;
use utilies::*;
mod utilities;
use utilities::*;

#[test]
fn parse_level_error() {
Expand Down
4 changes: 2 additions & 2 deletions tests/map.rs
Expand Up @@ -4,8 +4,8 @@ use indoc::indoc;
use nalgebra::Vector2;
use soukoban::{tiles::Tiles, Actions, Map, ParseMapError};

mod utilies;
use utilies::*;
mod utilities;
use utilities::*;

#[test]
fn parse_map_error() {
Expand Down
4 changes: 2 additions & 2 deletions tests/path_finding.rs
Expand Up @@ -3,8 +3,8 @@ use std::collections::HashSet;
use nalgebra::Vector2;
use soukoban::path_finding::*;

mod utilies;
use utilies::*;
mod utilities;
use utilities::*;

#[test]
fn test_find_path() {
Expand Down
4 changes: 2 additions & 2 deletions tests/solver.rs
@@ -1,8 +1,8 @@
use nalgebra::Vector2;
use soukoban::solver::*;

mod utilies;
use utilies::*;
mod utilities;
use utilities::*;

#[test]
fn test_solver() {
Expand Down
File renamed without changes.

0 comments on commit b4dcf9a

Please sign in to comment.