diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 22:13:39 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 22:13:39 +0800 |
commit | a2681bb44aace4c1ae87b84c4e66911d7857dc08 (patch) | |
tree | e8383e8e7a18717aaa5ac37b019ea6e3be379ddd /test/test_2016.cpp | |
parent | 191618e44b348edbec0bfe9e03a1f105c3029c39 (diff) | |
download | advent-of-code-a2681bb44aace4c1ae87b84c4e66911d7857dc08.tar.gz advent-of-code-a2681bb44aace4c1ae87b84c4e66911d7857dc08.zip |
2016 day10
Diffstat (limited to 'test/test_2016.cpp')
-rw-r--r-- | test/test_2016.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp index f21bd14..e42d817 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -103,7 +103,7 @@ TEST_CASE("Balance Bots", "[2016]") { line_view lv = load_file("../src/2016/day10/input"); auto p = aoc2016::day10(lv); REQUIRE(147 == p.first); - REQUIRE(0 == p.second); + REQUIRE(55637 == p.second); } TEST_CASE("", "[2016]") { |