Skip to content

Commit ab390e0

Browse files
author
Lukas Thomann
committed
fixed algorithm test
1 parent 78dcf7d commit ab390e0

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

cth/tests/src/algorithm/algorithm_test.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#include "cth/test.hpp"
22

33
#include "cth/algorithm/combine.hpp"
4-
#include "cth/string.hpp"
54

65
#include <vector>
76

@@ -37,7 +36,7 @@ ALG_TEST(assign, main) {
3736

3837
test({{0, 1}, {0}, {0, 1, 2}}, {1, 2, 0}, {1, 0, 1});
3938
test({{0, 1}, {0}, {0, 1, 2}, {0}}, {2, 1, 1}, {1, 0, 2, 0});
40-
test({{0, 1}, {0, 1}}, {3, 2, 1, 3}, {0, 0});
39+
test({{0, 1}, {0, 1}}, {3, 2, 1, 3}, {0, 1});
4140
test({{0, 4}, {0, 4}}, {0, 3, 3, 3, 2}, {4, 4});
4241
test({{0}}, {16, 2, 8, 1, 1, 1}, {0});
4342
}

0 commit comments

Comments
 (0)