aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test_policyhandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_policyhandler.py b/tests/test_policyhandler.py
index 19614bf..bd5ca19 100644
--- a/tests/test_policyhandler.py
+++ b/tests/test_policyhandler.py
@@ -164,7 +164,7 @@ class MonkeyPolicyBody(object):
val_1 = policy_body_1[key]
val_2 = policy_body_2[key]
if isinstance(val_1, list) and isinstance(val_2, list):
- if sorted(val_1) != sorted(val_1):
+ if sorted(val_1) != sorted(val_2):
return False
continue