diff options
author | Clyybber <darkmine956@gmail.com> | 2020-05-20 12:54:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 12:54:04 +0200 |
commit | 7fe4c66f3598d9c87fe93e60f5f123857779980c (patch) | |
tree | b3811bf43dcde80f368485491ce4443f65b0591e /tests/arc | |
parent | 3d20f141939b0cb76079a9b0ae7784f7877f1698 (diff) | |
download | Nim-7fe4c66f3598d9c87fe93e60f5f123857779980c.tar.gz |
Small improvements for string and char repr with gc:arc (#14400)
* Small improvements for string and char repr with gc:arc * Fix test
Diffstat (limited to 'tests/arc')
-rw-r--r-- | tests/arc/trepr.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/arc/trepr.nim b/tests/arc/trepr.nim index e24c112ac..a870b40b7 100644 --- a/tests/arc/trepr.nim +++ b/tests/arc/trepr.nim @@ -7,8 +7,8 @@ nil output: ''' nil 2 -Obj(member: ref @[hello]) -ref (member: ref @[hello]) +Obj(member: ref @["hello"]) +ref (member: ref @["hello"]) ''' """ import tables |