aboutsummaryrefslogtreecommitdiff
path: root/tests/BookmarkTest.php
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-28 22:33:36 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-28 22:33:36 +0000
commit39db48150629d92de6a61bb601357389f225b3b2 (patch)
tree6d652e12f5cf8e8d11dd9a7a84b0e483d07e3212 /tests/BookmarkTest.php
parent63f82a410158e2ace4584acdbc2f8896daa444b2 (diff)
downloadsemanticscuttle-39db48150629d92de6a61bb601357389f225b3b2.tar.gz
semanticscuttle-39db48150629d92de6a61bb601357389f225b3b2.tar.bz2
unification test was unstable, too
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@464 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tests/BookmarkTest.php')
-rw-r--r--tests/BookmarkTest.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/BookmarkTest.php b/tests/BookmarkTest.php
index 82c5fa6..01e6b38 100644
--- a/tests/BookmarkTest.php
+++ b/tests/BookmarkTest.php
@@ -103,15 +103,18 @@ class BookmarkTest extends TestBase
{
$bs = $this->bs;
+ $uid = $this->addUser();
+ $uid2 = $this->addUser();
+
$bs->addBookmark(
'http://site1.com', "title", "description", 'note',
0, array('tag1'), null, false, false,
- 1
+ $uid
);
$bs->addBookmark(
"http://site1.com", "title2", "description2", 'note',
0, array('tag2'), null, false, false,
- 2
+ $uid2
);
$bookmarks = $bs->getBookmarks();