From c8d3f6f59035d3923efc170f34bf368ff3fa30fc Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Mon, 18 Mar 2019 14:37:05 -0700 Subject: [PATCH] Automated rollback of commit 47cdde3e0648b78fde8a8230e4ab9a1fb07e3154 PiperOrigin-RevId: 239063515 --- tensorflow/python/lib/io/file_io_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/lib/io/file_io_test.py b/tensorflow/python/lib/io/file_io_test.py index f53c5fa792e..0ece84c08dc 100644 --- a/tensorflow/python/lib/io/file_io_test.py +++ b/tensorflow/python/lib/io/file_io_test.py @@ -139,7 +139,7 @@ class FileIoTest(test.TestCase): def testGetMatchingFiles(self): dir_path = os.path.join(self._base_dir, "temp_dir") file_io.create_dir(dir_path) - files = ["file1.txt", "file2.txt", "file3.txt", "file*.txt"] + files = ["file1.txt", "file2.txt", "file3.txt"] for name in files: file_path = os.path.join(dir_path, name) file_io.FileIO(file_path, mode="w").write("testing")