summaryrefslogtreecommitdiffstatshomepage
path: root/tests/www/bookmarksTest.php
diff options
context:
space:
mode:
authorGravatar Christian Weiske2011-06-27 22:31:24 +0200
committerGravatar Christian Weiske2011-06-27 22:31:24 +0200
commit3d11286cbcc3cb35efe11f6e4a4ef5ac81620bda (patch)
tree09b4e0acbafa918ccd64cd8d504eece992ba7a89 /tests/www/bookmarksTest.php
parent763d394436dc632bf18bff8876af22be9b44e9f4 (diff)
downloadscuttle-3d11286cbcc3cb35efe11f6e4a4ef5ac81620bda.tar.gz
scuttle-3d11286cbcc3cb35efe11f6e4a4ef5ac81620bda.zip
privatekey -> privateKey everywhere
Diffstat (limited to 'tests/www/bookmarksTest.php')
-rwxr-xr-xtests/www/bookmarksTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/www/bookmarksTest.php b/tests/www/bookmarksTest.php
index 1e1f4eb..ae82118 100755
--- a/tests/www/bookmarksTest.php
+++ b/tests/www/bookmarksTest.php
@@ -92,7 +92,7 @@ class www_bookmarksTest extends TestBaseApi
$this->assertEquals(
2, count($elements), 'Number of Links in Head not correct'
);
- $this->assertContains('privatekey=', (string)$elements[1]['href']);
+ $this->assertContains('privateKey=', (string)$elements[1]['href']);
}//end testVerifyPrivateRSSLinkExists
@@ -121,7 +121,7 @@ class www_bookmarksTest extends TestBaseApi
$this->assertEquals(
1, count($elements), 'Number of Links in Head not correct'
);
- $this->assertNotContains('privatekey=', (string)$elements[0]['href']);
+ $this->assertNotContains('privateKey=', (string)$elements[0]['href']);
}//end testVerifyPrivateRSSLinkDoesNotExist
}//end class www_bookmarksTest