summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/constructor_copy_runme.m
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/octave/constructor_copy_runme.m')
-rw-r--r--Examples/test-suite/octave/constructor_copy_runme.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/Examples/test-suite/octave/constructor_copy_runme.m b/Examples/test-suite/octave/constructor_copy_runme.m
index e450214c6..b6d3c3b6a 100644
--- a/Examples/test-suite/octave/constructor_copy_runme.m
+++ b/Examples/test-suite/octave/constructor_copy_runme.m
@@ -10,7 +10,7 @@ f11 = Foo1(f1);
if (f1.x != f11.x)
- error
+ error("failed");
endif
@@ -23,7 +23,7 @@ catch
end_try_catch
if (!good)
- error
+ error("failed");
endif
@@ -31,7 +31,7 @@ bi = Bari(5);
bc = Bari(bi);
if (bi.x != bc.x)
- error
+ error("failed");
endif
@@ -44,6 +44,6 @@ catch
end_try_catch
if (!good)
- error
+ error("failed");
endif