aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php
diff options
context:
space:
mode:
authorGravatar Anthony Yeh <enisoc@google.com>2015-10-15 14:57:57 -0700
committerGravatar Anthony Yeh <enisoc@google.com>2015-10-15 14:57:57 -0700
commit04e1eb8423fb4744c6e915ad2c71bfae3492ed37 (patch)
treec21f852d930f57da171bd7edb7c323a9a0dc4f89 /src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php
parent2d12214dccaefc79222668ae3994602adc91b51c (diff)
PHP: Fix property reference in BaseStub::close()
Diffstat (limited to 'src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php')
-rw-r--r--src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php b/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php
index 68f57d34ad..902eeb41e6 100644
--- a/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php
+++ b/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php
@@ -31,7 +31,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
-require 'AbstractGeneratedCodeTest.php';
+require_once dirname(__FILE__) . '/AbstractGeneratedCodeTest.php';
class GeneratedCodeWithCallbackTest extends AbstractGeneratedCodeTest {
public static function setUpBeforeClass() {
@@ -44,4 +44,8 @@ class GeneratedCodeWithCallbackTest extends AbstractGeneratedCodeTest {
return $a_copy;
}]);
}
+
+ public static function tearDownAfterClass() {
+ self::$client->close();
+ }
}