aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-19 17:09:58 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-19 17:10:36 +0800
commit191618e44b348edbec0bfe9e03a1f105c3029c39 (patch)
treefefab60940e841b948febce34e3b1b1023c78057 /test
parent6b38eb27ba31546c49dee6934700172380a14325 (diff)
downloadadvent-of-code-191618e44b348edbec0bfe9e03a1f105c3029c39.tar.gz
advent-of-code-191618e44b348edbec0bfe9e03a1f105c3029c39.zip
2016 day10 part1
Diffstat (limited to 'test')
-rw-r--r--test/test_2016.cpp4
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);
}