Deprecated: Assigning the return value of new by reference is deprecated in /home/bluestat/public_html/source/index.php on line 477
From 559aff3e53d6f2d3eac74b8a48dc23b1e740b0fd Mon Sep 17 00:00:00 2001
From: Robert Sesek
Date: Fri, 1 May 2009 17:00:37 -0400
Subject: [PATCH] Fix an issue with the ApiTest for renaming BSApi::remove()
to ::delete()
* UnitTest/ApiTest.php:
(ApiTest::testRemove)
---
UnitTest/ApiTest.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/UnitTest/ApiTest.php b/UnitTest/ApiTest.php
index 7b07375..dd940c7 100644
--- a/UnitTest/ApiTest.php
+++ b/UnitTest/ApiTest.php
@@ -241,7 +241,7 @@ class ApiTest extends PHPUnit_Framework_TestCase
try
{
- $this->fixture->remove();
+ $this->fixture->delete();
}
catch (Exception $e)
{
--
1.7.11.3