diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 17:09:58 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 17:10:36 +0800 |
commit | 191618e44b348edbec0bfe9e03a1f105c3029c39 (patch) | |
tree | fefab60940e841b948febce34e3b1b1023c78057 /test | |
parent | 6b38eb27ba31546c49dee6934700172380a14325 (diff) | |
download | advent-of-code-191618e44b348edbec0bfe9e03a1f105c3029c39.tar.gz advent-of-code-191618e44b348edbec0bfe9e03a1f105c3029c39.zip |
2016 day10 part1
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2016.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp index f1134ca..f21bd14 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -99,10 +99,10 @@ TEST_CASE("Explosives in Cyberspace", "[2016]") { // } } -TEST_CASE("", "[2016]") { +TEST_CASE("Balance Bots", "[2016]") { line_view lv = load_file("../src/2016/day10/input"); auto p = aoc2016::day10(lv); - REQUIRE(0 == p.first); + REQUIRE(147 == p.first); REQUIRE(0 == p.second); } |