diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-03-17 08:55:03 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-03-17 08:55:03 +0800 |
commit | 2e87804114b6c1e732ce002dc9a5f74db43e4cee (patch) | |
tree | ce2be15532c317c166ad8bf1489d98099a2a182b /test/test_2015.cpp | |
parent | 4747911566e69b1d95e88bb5955ffbeddfae6a08 (diff) | |
download | advent-of-code-2e87804114b6c1e732ce002dc9a5f74db43e4cee.tar.gz advent-of-code-2e87804114b6c1e732ce002dc9a5f74db43e4cee.zip |
grid
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r-- | test/test_2015.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp index a6bb135..f1d643b 100644 --- a/test/test_2015.cpp +++ b/test/test_2015.cpp @@ -74,7 +74,7 @@ TEST_CASE("Doesn't He Have Intern-Elves For This?", "[day5]") { } TEST_CASE("Probably a Fire Hazard", "[day6]") { - aoc2015::grid<1024> grid; + aoc2015::grid<1000> grid; grid.turn_on({0,0}, {0,999}); REQUIRE(grid.count() == 1000); } |