Skip to content

Commit 779c721

Browse files
authored
Fix vz_projector tests (tensorflow#3291)
Cause: it did not import the library under test. As a result, it was using symbols that were not defined.
1 parent 2dee1bb commit 779c721

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tensorboard/plugins/projector/vz_projector/test/BUILD

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ licenses(["notice"]) # Apache 2.0
1010
tf_web_test(
1111
name = "test",
1212
src = "/vz-projector/test/tests.html",
13-
# TODO(@wchargin): This test does not work in headless mode.
14-
tags = ["manual"],
1513
web_library = ":test_web_library",
1614
)
1715

tensorboard/plugins/projector/vz_projector/test/tests.html

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<meta charset="utf-8" />
2020
<script src="../../web-component-tester/browser.js"></script>
2121
<link rel="import" href="../../tf-imports/polymer.html" />
22+
<link rel="import" href="../bundle.html" />
2223
<body>
2324
<script src="assert.js"></script>
2425
<script src="sptree_test.js"></script>

0 commit comments

Comments
 (0)