diff options
author | matteo <matteo.pasotti@gmail.com> | 2014-06-30 00:03:37 +0300 |
---|---|---|
committer | matteo <matteo.pasotti@gmail.com> | 2014-06-30 00:03:37 +0300 |
commit | 6103628fc64ba9ec2cc6c915477071e3395d7535 (patch) | |
tree | 41449af6bb17dfd755fd07e68dfe6c389f779615 /t | |
parent | f95410b45a5aba5d9b8b8140bbadb1f364f06eb7 (diff) | |
download | manatools-6103628fc64ba9ec2cc6c915477071e3395d7535.tar manatools-6103628fc64ba9ec2cc6c915477071e3395d7535.tar.gz manatools-6103628fc64ba9ec2cc6c915477071e3395d7535.tar.bz2 manatools-6103628fc64ba9ec2cc6c915477071e3395d7535.tar.xz manatools-6103628fc64ba9ec2cc6c915477071e3395d7535.zip |
SILENT: fixed attribute name
Diffstat (limited to 't')
-rw-r--r-- | t/03-Shared_GUI.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/03-Shared_GUI.t b/t/03-Shared_GUI.t index 65777983..f4ac300a 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"). " >"; |