aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/lib
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-03-15 15:44:56 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-15 15:49:01 -0700
commit1e75c69339da2fbf2c5c5fbeb891243badae7ff8 (patch)
tree81268169bbff6836bfbbd4e9866a1374f597a624 /tensorflow/python/lib
parent6c62e650252ab32f83637a8de6720e73ffeca226 (diff)
Automated g4 rollback of changelist 189231636
PiperOrigin-RevId: 189258641
Diffstat (limited to 'tensorflow/python/lib')
-rw-r--r--tensorflow/python/lib/io/file_io_test.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tensorflow/python/lib/io/file_io_test.py b/tensorflow/python/lib/io/file_io_test.py
index 223858edfa..a751607aaa 100644
--- a/tensorflow/python/lib/io/file_io_test.py
+++ b/tensorflow/python/lib/io/file_io_test.py
@@ -485,11 +485,6 @@ class FileIoTest(test.TestCase):
f.flush()
self.assertEqual(content, f.read(len(content) + 1))
- def testUTF8StringPathExists(self):
- file_path = os.path.join(self._base_dir, "UTF8测试_file_exist")
- file_io.write_string_to_file(file_path, "testing")
- v = file_io.file_exists(file_path)
- self.assertEqual(v, True)
if __name__ == "__main__":
test.main()