about summary refs log tree commit diff stats
path: root/subx
diff options
context:
space:
mode:
Diffstat (limited to 'subx')
-rw-r--r--subx/035labels.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/subx/035labels.cc b/subx/035labels.cc
index 2d1c752e..5596f6cc 100644
--- a/subx/035labels.cc
+++ b/subx/035labels.cc
@@ -297,11 +297,12 @@ void test_loading_label_as_imm32() {
   transform(
       "== 0x1\n"
       "label:\n"
-      "be/copy-to-ESI   label/imm32");
+      "  be/copy-to-ESI  label/imm32\n"
+  );
   CHECK_TRACE_CONTENTS(
       "transform: label 'label' is at address 1\n"
       "transform: instruction after transform: 'be 01 00 00 00'\n"
-      );
+  );
 }
 
 void test_duplicate_label() {