summaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2023-12-21 19:46:56 -0500
committerMicha White <botahamec@outlook.com>2023-12-21 19:46:56 -0500
commited979b7d697904f0351ac8e1add08d131a35f791 (patch)
tree256dca36af12e214ac4309e4789971e8d95cbcc4 /model
parentc9f4c2c1907ef51224adc7424388bdde20a18ba6 (diff)
Updated two tests
Diffstat (limited to 'model')
-rw-r--r--model/src/possible_moves.rs4
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>();
}
}