tests/micropython/heapalloc_fail_set.py: Remove extra trailing comma.

Unlike tuples, sets do not need trailing comma when there is only one item.
pull/5844/head
David Lechner 2020-03-28 12:38:01 -05:00 zatwierdzone przez Damien George
rodzic 2461349b27
commit 488613bca6
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -6,7 +6,7 @@ import micropython
x = 1
micropython.heap_lock()
try:
{x,}
{x}
except MemoryError:
print('MemoryError: set create')
micropython.heap_unlock()