diff options
| author | Micha White <botahamec@outlook.com> | 2023-12-21 19:46:56 -0500 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2023-12-21 19:46:56 -0500 |
| commit | ed979b7d697904f0351ac8e1add08d131a35f791 (patch) | |
| tree | 256dca36af12e214ac4309e4789971e8d95cbcc4 | |
| parent | c9f4c2c1907ef51224adc7424388bdde20a18ba6 (diff) | |
Updated two tests
| -rw-r--r-- | model/src/possible_moves.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/model/src/possible_moves.rs b/model/src/possible_moves.rs index bdb4775..bf69df6 100644 --- a/model/src/possible_moves.rs +++ b/model/src/possible_moves.rs @@ -1055,13 +1055,13 @@ mod tests { fn test_send() { fn assert_send<T: Send>() {} assert_send::<PossibleMoves>(); - // TODO iterator + assert_send::<PossibleMovesIter>(); } #[test] fn test_sync() { fn assert_sync<T: Sync>() {} assert_sync::<PossibleMoves>(); - // TODO iterator + assert_sync::<PossibleMovesIter>(); } } |
