aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authormatteo <matteo.pasotti@gmail.com>2014-06-30 00:03:37 +0300
committermatteo <matteo.pasotti@gmail.com>2014-06-30 00:03:37 +0300
commit6103628fc64ba9ec2cc6c915477071e3395d7535 (patch)
tree41449af6bb17dfd755fd07e68dfe6c389f779615 /t
parentf95410b45a5aba5d9b8b8140bbadb1f364f06eb7 (diff)
downloadcolin-keep-6103628fc64ba9ec2cc6c915477071e3395d7535.tar
colin-keep-6103628fc64ba9ec2cc6c915477071e3395d7535.tar.gz
colin-keep-6103628fc64ba9ec2cc6c915477071e3395d7535.tar.bz2
colin-keep-6103628fc64ba9ec2cc6c915477071e3395d7535.tar.xz
colin-keep-6103628fc64ba9ec2cc6c915477071e3395d7535.zip
SILENT: fixed attribute name
Diffstat (limited to 't')
-rw-r--r--t/03-Shared_GUI.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/03-Shared_GUI.t b/t/03-Shared_GUI.t
index 6577798..f4ac300 100644
--- a/t/03-Shared_GUI.t
+++ b/t/03-Shared_GUI.t
@@ -22,13 +22,13 @@ BEGIN {
ok( $gui->warningMsgBox({text => "Warning message! (no title, no richtext)<br> line two"}), 'wmb1');
- ok( $gui->warningMsgBox({text => "Warning message!<br> line two", title => "WARN", reachtext => 1}), 'wmb2');
+ ok( $gui->warningMsgBox({text => "Warning message!<br> line two", title => "WARN", richtext => 1}), 'wmb2');
- ok($gui->infoMsgBox({text => "Info message!<br> line two", title => "INFO", reachtext => 1}), 'imb');
+ ok($gui->infoMsgBox({text => "Info message!<br> line two", title => "INFO", richtext => 1}), 'imb');
ok($gui->msgBox({text => "Normal message! (no title, no richtext)<br> line two"}), 'mb1');
- ok($gui->msgBox({title => "Message", text => "Normal message!<br> line two", reachtext=>1}), 'mb2');
+ ok($gui->msgBox({title => "Message", text => "Normal message!<br> line two", richtext=>1}), 'mb2');
cmp_ok(my $btn = $gui->ask_OkCancel({title => "Tests", text => "All these tests seem to be passed"}), ">=", 0, 'askOkCancel');
diag "ask_OkCancel got: < " . ($btn == 1 ? "Ok": "Cancel"). " >";