From b256488cba2857d35a776d2e31f21b2ba5101a1d Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 29 Nov 2016 00:36:05 +0100 Subject: [PATCH] Host/ServiceNodeTest: adjust tests... ...legacy methods have been removed --- test/php/library/Businessprocess/HostNodeTest.php | 2 +- test/php/library/Businessprocess/ServiceNodeTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/php/library/Businessprocess/HostNodeTest.php b/test/php/library/Businessprocess/HostNodeTest.php index dd1c01a..58f6a22 100644 --- a/test/php/library/Businessprocess/HostNodeTest.php +++ b/test/php/library/Businessprocess/HostNodeTest.php @@ -38,7 +38,7 @@ class HostNodeTest extends BaseTestCase $this->assertEquals( '' . 'localhost', - $this->localhost()->renderLink(new View()) + $this->localhost()->getLink()->render() ); } diff --git a/test/php/library/Businessprocess/ServiceNodeTest.php b/test/php/library/Businessprocess/ServiceNodeTest.php index a9a4d4d..30e730c 100644 --- a/test/php/library/Businessprocess/ServiceNodeTest.php +++ b/test/php/library/Businessprocess/ServiceNodeTest.php @@ -38,7 +38,7 @@ class ServiceNodeTest extends BaseTestCase $this->assertEquals( '' . 'localhost: ping <> pong', - $this->pingOnLocalhost()->renderLink(new View()) + $this->pingOnLocalhost()->getLink()->render() ); }