summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/struct_value_runme.m
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/octave/struct_value_runme.m')
-rw-r--r--Examples/test-suite/octave/struct_value_runme.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/octave/struct_value_runme.m b/Examples/test-suite/octave/struct_value_runme.m
index ff344047e..7f7448bb6 100644
--- a/Examples/test-suite/octave/struct_value_runme.m
+++ b/Examples/test-suite/octave/struct_value_runme.m
@@ -9,10 +9,10 @@ b = struct_value.Bar();
b.a.x = 3;
if (b.a.x != 3)
- error
+ error("failed");
endif
b.b.x = 3;
if (b.b.x != 3)
- error
+ error("failed");
endif