diff options
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index f0d4c27..f7dddd1 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -24,11 +24,12 @@ cc_library( [cc_test(
name = "%s_tests" % name,
srcs = [
- "%s_tests.cpp" % name,
- "test_types.hpp",
+ "tests/%s_tests.cpp" % name,
+ "tests/test_types.hpp",
],
deps = [
":asl",
+ "//asl/testing",
],
) for name in [
"format",
|