From 82bf481c9229ad530ec804238eaf7006741ac9ef Mon Sep 17 00:00:00 2001 From: Michael Reneer <michaelreneer@google.com> Date: Mon, 14 Oct 2019 15:24:02 -0700 Subject: [PATCH] Fix BUILD file bool value. PiperOrigin-RevId: 274673083 --- tensorflow_federated/python/common_libs/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow_federated/python/common_libs/BUILD b/tensorflow_federated/python/common_libs/BUILD index 3180038ee..0e5423398 100644 --- a/tensorflow_federated/python/common_libs/BUILD +++ b/tensorflow_federated/python/common_libs/BUILD @@ -68,7 +68,7 @@ py_test( py_library( name = "test", - testonly = 1, + testonly = True, srcs = ["test.py"], ) -- GitLab