summary refs log tree commit diff stats
path: root/tests/objects
diff options
context:
space:
mode:
authorFabian Keller <bluenote10@users.noreply.github.com>2017-12-14 14:02:13 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-12-14 14:02:13 +0100
commit6df6ec27ec573fc7f619f7bf9fece6d6b0dc931f (patch)
treef9eadca2e1b46112ec11da257cb664010a369a8d /tests/objects
parentbc1123536e36a222dc3bf65c40c6ceee07da6499 (diff)
downloadNim-6df6ec27ec573fc7f619f7bf9fece6d6b0dc931f.tar.gz
Improved collection-to-string behavior (#6825)
Diffstat (limited to 'tests/objects')
-rw-r--r--tests/objects/tobjconstr.nim20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/objects/tobjconstr.nim b/tests/objects/tobjconstr.nim
index 12478f621..b7da176aa 100644
--- a/tests/objects/tobjconstr.nim
+++ b/tests/objects/tobjconstr.nim
@@ -1,14 +1,14 @@
 discard """
-  output: '''(k: kindA, a: (x: abc, z: [1, 1, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 2, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 3, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 4, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 5, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 6, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 7, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 8, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 9, 3]), method: ())
-(k: kindA, a: (x: abc, z: [1, 10, 3]), method: ())
+  output: '''(k: kindA, a: (x: "abc", z: [1, 1, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 2, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 3, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 4, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 5, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 6, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 7, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 8, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 9, 3]), method: ())
+(k: kindA, a: (x: "abc", z: [1, 10, 3]), method: ())
 (x: 123)
 (x: 123)
 (z: 89, y: 0, x: 128)