From bfa25d124a22be4e17fd2f53037a139d52bc825e Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Tue, 5 Mar 2019 12:41:27 +0100 Subject: [PATCH] rename testdata file - cause pytest err --- bw_client.py | 2 +- test/{testdata.txt => testdata.list} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test/{testdata.txt => testdata.list} (100%) diff --git a/bw_client.py b/bw_client.py index 7eeea3d..8e52634 100644 --- a/bw_client.py +++ b/bw_client.py @@ -79,7 +79,7 @@ try: bwClient = TCPClient() if bwClient.connect(ip, port): - testFile = open(paths.TEST_PATH + "testdata.txt", "r") + testFile = open(paths.TEST_PATH + "testdata.list", "r") while 1: diff --git a/test/testdata.txt b/test/testdata.list similarity index 100% rename from test/testdata.txt rename to test/testdata.list