From 4e6592a38e2fe9de039b5e94d2bc3e91264dde5c Mon Sep 17 00:00:00 2001 From: Francis Besset Date: Wed, 27 Jul 2011 23:38:21 +0200 Subject: [PATCH] Fixed typo --- Tests/ServiceBinding/RpcLiteralRequestMessageBinderTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/ServiceBinding/RpcLiteralRequestMessageBinderTest.php b/Tests/ServiceBinding/RpcLiteralRequestMessageBinderTest.php index a9b1ee0..0eb1997 100644 --- a/Tests/ServiceBinding/RpcLiteralRequestMessageBinderTest.php +++ b/Tests/ServiceBinding/RpcLiteralRequestMessageBinderTest.php @@ -82,7 +82,7 @@ class RpcLiteralRequestMessageBinderTest extends \PHPUnit_Framework_TestCase $this->assertSame(12, $result['attributes'][1]->bar); } - public function testProcessMessageWithComplexTypeIntoComplexType() + public function testProcessMessageWithComplexTypeMethods() { $methods = new \stdClass(); $methods->foo = 'bar'; @@ -102,7 +102,7 @@ class RpcLiteralRequestMessageBinderTest extends \PHPUnit_Framework_TestCase $this->assertSame(23, $result['setters']->getBar()); } - public function testProcessMessageWithComplexTypeMethods() + public function testProcessMessageWithComplexTypeIntoComplexType() { $complexType = new \stdClass(); $foo = $complexType->foo = new \stdClass();