From cc88a330889da3e200853667c173261b75aa0e0b Mon Sep 17 00:00:00 2001
From: jgen <jeffgenovy@gmail.com>
Date: Tue, 18 Feb 2014 16:14:57 -0500
Subject: [PATCH] PHP doesn't call it is_empty, but it does have is_null. Yay
 consistency.

---
 tests/test_install.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test_install.php b/tests/test_install.php
index e9c06924..fe4d2d50 100644
--- a/tests/test_install.php
+++ b/tests/test_install.php
@@ -3,7 +3,7 @@
 $options = getopt("d:");
 $db = $options["d"];
 
-if (is_empty($db)){
+if (empty($db)){
 	die("Error: need to specifiy a database for the test environment.");
 }
 
@@ -22,7 +22,7 @@ class ShimmieSimpleTestCase extends WebTestCase {
 	function testInstallShimmie()
 	{
 		// Make sure that we know what database to use.
-		$this->assertFalse(is_empty($this->database));
+		$this->assertFalse(empty($this->database));
 		
 		$this->get('http://127.0.0.1/');
 		$this->assertResponse(200);