about summary refs log tree commit diff
path: root/tests/debuginfo/static-method-on-struct-and-enum.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/debuginfo/static-method-on-struct-and-enum.rs')
-rw-r--r--tests/debuginfo/static-method-on-struct-and-enum.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/debuginfo/static-method-on-struct-and-enum.rs b/tests/debuginfo/static-method-on-struct-and-enum.rs
index ad078122dde..23384e0c33a 100644
--- a/tests/debuginfo/static-method-on-struct-and-enum.rs
+++ b/tests/debuginfo/static-method-on-struct-and-enum.rs
@@ -29,22 +29,22 @@
 
 // STRUCT
 // lldb-command:print arg1
-// lldbg-check:[...]$0 = 1
+// lldbg-check:[...] 1
 // lldbr-check:(isize) arg1 = 1
 // lldb-command:print arg2
-// lldbg-check:[...]$1 = 2
+// lldbg-check:[...] 2
 // lldbr-check:(isize) arg2 = 2
 // lldb-command:continue
 
 // ENUM
 // lldb-command:print arg1
-// lldbg-check:[...]$2 = -3
+// lldbg-check:[...] -3
 // lldbr-check:(isize) arg1 = -3
 // lldb-command:print arg2
-// lldbg-check:[...]$3 = 4.5
+// lldbg-check:[...] 4.5
 // lldbr-check:(f64) arg2 = 4.5
 // lldb-command:print arg3
-// lldbg-check:[...]$4 = 5
+// lldbg-check:[...] 5
 // lldbr-check:(usize) arg3 = 5
 // lldb-command:continue