diff options
Diffstat (limited to 'test/structs.tm')
| -rw-r--r-- | test/structs.tm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/structs.tm b/test/structs.tm index fdf92d18..05349068 100644 --- a/test/structs.tm +++ b/test/structs.tm @@ -58,8 +58,8 @@ func main() >> my_pass := Password("Swordfish") assert my_pass == Password("Swordfish") assert "$my_pass" == "Password(...)" - >> users_by_password := {my_pass="User1", Password("xxx")="User2"} - assert "$users_by_password" == '{Password(...)="User1", Password(...)="User2"}' + >> users_by_password := {my_pass: "User1", Password("xxx"): "User2"} + assert "$users_by_password" == '{Password(...): "User1", Password(...): "User2"}' assert users_by_password[my_pass]! == "User1" >> CorecursiveA(@CorecursiveB()) |
