1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: fix some interpolation tests

This commit is contained in:
Alexander Medvednikov
2022-10-27 11:12:15 +03:00
parent 604f19adba
commit e1ffc76efd
3 changed files with 4 additions and 4 deletions

View File

@@ -516,7 +516,7 @@ fn test_struct_print() {
}
a.b << b
a.b << b
assert a.str() == '{Test [{1 2}, {1 2}]}'
assert a.str() == '\{Test [{1 2}, {1 2}]}'
assert b.str() == '{1 2}'
assert a.b.str() == '[{1 2}, {1 2}]'
}