aboutsummaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index 0354407..9126b1b 100755
--- a/test.py
+++ b/test.py
@@ -98,7 +98,7 @@ def reset_state_string(string):
def compare_state(comp_state):
with open(comp_state, "r", encoding='utf-8') as csf, \
- open(os.environ["GSB_STATE_FILE", encoding='utf-8'], "r") as sf:
+ open(os.environ["GSB_STATE_FILE"], "r", encoding='utf-8') as sf:
cs = csf.read()
s = sf.read()
return cs == s