aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2013-03-20 20:00:25 +0100
committerChristian Weiske <cweiske@cweiske.de>2013-03-20 20:00:25 +0100
commit85e2ccd942fc67944c9324e71097f426abf75a01 (patch)
treee7a8f71c4937fccb7686b8ae9d5e5664cfd84d40 /tests
parentfc4c79df8a6fb6c82a3552260d43271fede24ed2 (diff)
downloadsemanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.gz
semanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.bz2
remove php4-style object reference passing #2
Diffstat (limited to 'tests')
-rw-r--r--tests/BookmarkTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/BookmarkTest.php b/tests/BookmarkTest.php
index 44a82d9..c436859 100644
--- a/tests/BookmarkTest.php
+++ b/tests/BookmarkTest.php
@@ -129,9 +129,9 @@ class BookmarkTest extends TestBase
$bs = $this->bs;
$bs->addBookmark("http://site1.com", "title", "éèüaàê", "status", array('tag1'), null, false, false, 1);
- $bookmarks =& $bs->getBookmarks(0, NULL, NULL, NULL, $terms = "eeaae"); //void
+ $bookmarks = $bs->getBookmarks(0, NULL, NULL, NULL, $terms = "eeaae"); //void
$this->assertEquals(0, $bookmarks['total']);
- $bookmarks =& $bs->getBookmarks(0, NULL, NULL, NULL, $terms = "eeuaae");
+ $bookmarks = $bs->getBookmarks(0, NULL, NULL, NULL, $terms = "eeuaae");
$this->assertEquals(1, $bookmarks['total']);
}*/