summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-04-25 20:28:46 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-04-25 20:28:46 +0200
commitec9041a9526b52910aafac1f7c0acfc8215ac107 (patch)
treee87541ff0f442f137f4e5c797014bfa8311c6f3f /tests
parent4978b4f27d7a0e6058d04e7184600bf835070a8b (diff)
Made the state object avoid any heap allocations
Diffstat (limited to 'tests')
-rw-r--r--tests/official-runner-matching.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/official-runner-matching.rs b/tests/official-runner-matching.rs
index e5602a2..f4c2a83 100644
--- a/tests/official-runner-matching.rs
+++ b/tests/official-runner-matching.rs
@@ -8,7 +8,8 @@ use std::io::prelude::*;
#[test]
fn simulates_the_same_match() {
- // TODO: Also assert map state
+ // TODO: Assert map state
+ // TODO: Assert end state
let replays = Path::new("tests/replays/");
for replay in replays.read_dir().expect("read_dir failed") {