fix tests that did not find the data file
This commit is contained in:
parent
3b582fd875
commit
b937d6ee42
1 changed files with 2 additions and 2 deletions
|
@ -524,7 +524,7 @@ TXT;
|
|||
$testcookievalue = $uId . ':' . md5($testusername . $testcookiepassword);
|
||||
$req->setCookieJar(true);
|
||||
$req->addCookie($testcookiekey, $testcookievalue);
|
||||
$req->addUpload('userfile', '../data/BookmarkTest_netscapebookmarks.html');
|
||||
$req->addUpload('userfile', dirname(__FILE__) . '/../data/BookmarkTest_netscapebookmarks.html');
|
||||
$req->send();
|
||||
$this->us->setCurrentUserId($uId);
|
||||
$bms = $this->bs->getBookmarks(0, null, $uId);
|
||||
|
@ -553,7 +553,7 @@ TXT;
|
|||
$testcookievalue = $uId . ':' . md5($testusername . $testcookiepassword);
|
||||
$req->setCookieJar(true);
|
||||
$req->addCookie($testcookiekey, $testcookievalue);
|
||||
$req->addUpload('userfile', '../data/BookmarkTest_deliciousbookmarks.xml');
|
||||
$req->addUpload('userfile', dirname(__FILE__) . '/../data/BookmarkTest_deliciousbookmarks.xml');
|
||||
$req->send();
|
||||
$this->us->setCurrentUserId($uId);
|
||||
$bms = $this->bs->getBookmarks(0, null, $uId);
|
||||
|
|
Loading…
Reference in a new issue