diff --git a/ortools/algorithms/BUILD.bazel b/ortools/algorithms/BUILD.bazel index a4ccf88239..ccf5546c1a 100644 --- a/ortools/algorithms/BUILD.bazel +++ b/ortools/algorithms/BUILD.bazel @@ -334,6 +334,7 @@ cc_test( "//ortools/base:dump_vars", "//ortools/base:map_util", "//ortools/base:path", + "//ortools/base:status_matchers", "//ortools/graph:io", "@com_google_absl//absl/random", "@com_google_absl//absl/status", diff --git a/ortools/algorithms/find_graph_symmetries_test.cc b/ortools/algorithms/find_graph_symmetries_test.cc index 7c46b92439..97d2065fd2 100644 --- a/ortools/algorithms/find_graph_symmetries_test.cc +++ b/ortools/algorithms/find_graph_symmetries_test.cc @@ -43,6 +43,7 @@ #include "ortools/algorithms/dynamic_partition.h" #include "ortools/algorithms/dynamic_permutation.h" #include "ortools/algorithms/sparse_permutation.h" +#include "ortools/base/status_matchers.h" #include "ortools/base/dump_vars.h" #include "ortools/base/helpers.h" #include "ortools/base/map_util.h"