summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages
diff options
context:
space:
mode:
authorJean-Luc Gyger <jean-luc.gyger@vysual.ch>2016-02-11 10:01:12 +0100
committerJean-Luc Gyger <jean-luc.gyger@vysual.ch>2016-02-11 10:01:12 +0100
commitd70861a8f9368773f2f0291454e9420174e6c14a (patch)
treee44a32e401211422fb05da355c9eef4d5934d9e9 /tests/FunctionalTests/active-controls/protected/pages
parentd32f65815eb6feb4bcb8a0c85572f722d7826342 (diff)
parent275f16b90a92c62935cb691d11e0bd124acf64e4 (diff)
Merge branch 'master' of https://github.com/majuca/prado
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages')
-rwxr-xr-xtests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page2
-rwxr-xr-xtests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page
index 9b149b45..b2aefc3b 100755
--- a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page
+++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page
@@ -2,7 +2,7 @@
<h1>Active HyperLink Test Case</h1>
<div style="margin:1em; padding:1em; border:1px solid #ccc; text-align:center;">
- <com:TActiveHyperLink ID="link1" Text="Link 1" NavigateUrl="http://www.pradosoft.com" />
+ <com:TActiveHyperLink ID="link1" Text="Link 1" NavigateUrl="https://github.com/pradosoft/prado" />
</div>
<com:TActiveButton ID="button1" Text="Change Text" OnClick="change_text" />
<com:TActiveButton ID="button2" Text="Change Image" OnClick="change_image" />
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php
index ef3f597e..5ccf2e70 100755
--- a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php
+++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php
@@ -4,7 +4,7 @@ class ActiveHyperLinkTest extends TPage
{
function change_text()
{
- $this->link1->Text = "Pradosoft.com";
+ $this->link1->Text = "Prado framework";
}
function change_image()
@@ -19,6 +19,6 @@ class ActiveHyperLinkTest extends TPage
function change_url()
{
- $this->link1->NavigateUrl = "http://www.xlab6.com";
+ $this->link1->NavigateUrl = "http://www.google.com";
}
}