summaryrefslogtreecommitdiffstats
path: root/tests/cli_tests/test_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cli_tests/test_config.py')
-rw-r--r--tests/cli_tests/test_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cli_tests/test_config.py b/tests/cli_tests/test_config.py
index 1795c62..eeaba33 100644
--- a/tests/cli_tests/test_config.py
+++ b/tests/cli_tests/test_config.py
@@ -19,7 +19,7 @@ def test_log_location_config():
log = Path("/tmp/iredis1.log")
assert log.exists()
- with open(log, "r") as logfile:
+ with open(log) as logfile:
content = logfile.read()
assert len(content) > 100