summary refs log tree commit diff stats
path: root/tests/fields/timplicitfieldswithpartial.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fields/timplicitfieldswithpartial.nim')
-rw-r--r--tests/fields/timplicitfieldswithpartial.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fields/timplicitfieldswithpartial.nim b/tests/fields/timplicitfieldswithpartial.nim
index ab50f4276..996912a1a 100644
--- a/tests/fields/timplicitfieldswithpartial.nim
+++ b/tests/fields/timplicitfieldswithpartial.nim
@@ -1,5 +1,5 @@
 discard """
-  out: '''(foo0: 38, other1: string here)
+  output: '''(foo: 38, other: string here)
 43'''
 """
 
@@ -12,7 +12,7 @@ proc my(f: Foo) =
   let f.foo = 38
   let f.other = "string here"
   echo f[]
-  echo f.foo0 + 5
+  echo f.foo + 5
 
 var g: Foo
 new(g)