Skip to content

Commit

Permalink
fix(mme): Corrects bazel dependencies for amf_app_test_util (#12136)
Browse files Browse the repository at this point in the history
Per issue detected by @themarwhal at #12124 (comment)

## Test Plan

The following is successful:

```
MAGMA_ROOT=/Users/<username>/Documents/magma/ docker-compose run magma-builder bash
bazel test //lte/gateway/c/core/...
```

Signed-off-by: Scott Moeller <electronjoe@gmail.com>
  • Loading branch information
electronjoe authored and ardzoht committed Mar 29, 2022
1 parent ffc764c commit 4ccc74c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions lte/gateway/c/core/oai/test/amf/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,6 @@ cc_library(
],
deps = [
"//lte/gateway/c/core",
"@com_google_googletest//:gtest",
],
)
1 change: 1 addition & 0 deletions lte/gateway/c/core/oai/test/mme_app_task/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ cc_library(
],
deps = [
"//lte/gateway/c/core",
"@com_google_googletest//:gtest",
],
)

Expand Down
5 changes: 4 additions & 1 deletion lte/gateway/c/core/oai/test/spgw_task/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ cc_library(
"spgw_test_util.h",
"state_creators.h",
],
deps = ["//lte/gateway/c/core"],
deps = [
"//lte/gateway/c/core",
"@com_google_googletest//:gtest",
],
)

cc_test(
Expand Down

0 comments on commit 4ccc74c

Please sign in to comment.