]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
AtomPub tests: fix for atom post check
authorBrion Vibber <brion@pobox.com>
Tue, 14 Dec 2010 21:23:09 +0000 (13:23 -0800)
committerBrion Vibber <brion@pobox.com>
Tue, 14 Dec 2010 21:23:09 +0000 (13:23 -0800)
tests/atompub/atompub_test.php

index cc1f93b44cf35054bb0d63064f412f2fa901b29d..389fd12c41fdf44bad0cf49e75b2ed80da8d1d8e 100644 (file)
@@ -185,7 +185,7 @@ class AtomPubClient
             throw new Exception('Bad Atom entry: XML is not well formed.');
         }
 
-        $activity = new Activity($dom);
+        $activity = new Activity($dom->documentRoot);
         return true;
     }
 }
@@ -283,6 +283,7 @@ echo "ok\n";
 echo "Refetching deleted notice to confirm it's gone... ";
 try {
     $body = $notice->get();
+    var_dump($body);
     die("ERROR: notice should be gone now.\n");
 } catch (Exception $e) {
     echo "ok\n";