Skip to content

Commit edafacc

Browse files
committed
test_dict: reverse_locals add err message
1 parent 36b62ba commit edafacc

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src/tests

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_dict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ def test_reverse_locals():
735735
a = 'atest'
736736
b = 'btest'
737737
dict = locals()
738-
assert list(reversed(dict)) == ['b', 'a']
738+
assert list(reversed(dict)) == ['b', 'a'], "expected ['b', 'a'] got " + str(list(reversed(dict))) + " instead "
739739

740740
def test_concat():
741741
r = {**{}}

0 commit comments

Comments
 (0)