tests reorg
authorgggeek <giunta.gaetano@gmail.com>
Wed, 30 Dec 2020 16:46:27 +0000 (16:46 +0000)
committergggeek <giunta.gaetano@gmail.com>
Wed, 30 Dec 2020 16:46:27 +0000 (16:46 +0000)
tests/3EncoderTest.php
tests/4ClientTest.php

index 7621c6d..2c41d75 100644 (file)
@@ -55,7 +55,7 @@ class EncoderTests extends PhpXmlRpc_PolyfillTestCase
     {
         $r = new DateTime();
         $v = php_xmlrpc_encode($r);
-        $this->assertEquals('dateTime.iso8601', $v->kindof());
+        $this->assertEquals('dateTime.iso8601', $v->scalartyp());
     }
 
     public function testEncodeRecursive()
index 159cb0c..a2942b4 100644 (file)
@@ -56,12 +56,12 @@ class ClientTest extends PhpXmlRpc_PolyfillTestCase
             new xmlrpcval('hello', 'string'),
         ));
         $this->client->server .= 'XXX';
-        $r = $this->client->send($m, 5);
-        // make sure there's no freaking catchall DNS in effect
-        $dnsinfo = dns_get_record($this->client->server);
+        $dnsinfo = @dns_get_record($this->client->server);
         if ($dnsinfo) {
             $this->markTestSkipped('Seems like there is a catchall DNS in effect: host ' . $this->client->server . ' found');
         } else {
+            $r = $this->client->send($m, 5);
+            // make sure there's no freaking catchall DNS in effect
             $this->assertEquals(5, $r->faultCode());
         }
     }