fix formatting

This commit is contained in:
Brendan Hansknecht 2022-12-02 10:47:39 -08:00
parent ac2380f6c8
commit b4b18cda5a
No known key found for this signature in database
GPG Key ID: 0EA784685083E75B
2 changed files with 6 additions and 3 deletions

View File

@ -727,18 +727,21 @@ expect
contains dict "baz" && Bool.not (contains dict "other")
expect
dict = fromList [(T 1u8 1u8), (T 2 2), (T 3 3)]
dict =
fromList [T 1u8 1u8, T 2 2, T 3 3]
|> remove 1
|> remove 3
keys dict == [2]
expect
list =
fromList [(T 1u8 1u8), (T 2u8 2u8), (T 3 3)]
fromList [T 1u8 1u8, T 2u8 2u8, T 3 3]
|> remove 1
|> insert 0 0
|> remove 3
|> keys
list == [0, 2]
# Reach capacity, no rehash.

View File

@ -202,4 +202,4 @@ expect
|> insert 8
|> insert 9
x == fromList (toList x)
x == fromList (toList x)