Skip to content

Commit 3153e8d

Browse files
authored
Add missing build dependency for internal import. (#6501)
#6496 broke the internal import due to missing BUILD dependency for json_format_compat_test.py.
1 parent 07d74ac commit 3153e8d

File tree

1 file changed

+4
-1
lines changed
  • tensorboard/plugins/hparams

1 file changed

+4
-1
lines changed

tensorboard/plugins/hparams/BUILD

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,10 @@ py_test(
122122
srcs = [
123123
"json_format_compat_test.py",
124124
],
125-
deps = [":hparams_plugin"],
125+
deps = [
126+
":hparams_plugin",
127+
"//tensorboard:expect_absl_testing_absltest_installed",
128+
],
126129
)
127130

128131
py_binary(

0 commit comments

Comments
 (0)