Skip to content

Commit

Permalink
test: added path to maze test
Browse files Browse the repository at this point in the history
  • Loading branch information
guha-rahul committed Oct 11, 2024
1 parent 3c6c268 commit 31a17b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/map/src/finders/dfs.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ mod test {
#[test]
fn test_dfs_maze() {
// Grid representation:
// x 1 0 0 0
// 0 1 1 1 0
// 0 0 0 1 0
// 1 1 1 1 s
// x * 0 0 0
// 0 * * * 0
// 0 0 0 * 0
// 1 1 1 * s
let grid: felt252 = 0xC385F;
let width = 5;
let height = 4;
Expand Down

0 comments on commit 31a17b6

Please sign in to comment.