summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authortianhe1986 <w1s2j3229@163.com>2017-02-21 02:38:08 +0100
committertianhe1986 <w1s2j3229@163.com>2017-02-21 02:38:08 +0100
commit3e0ad435f13179ed1c590bdeba2fbeeaa7d0f9c2 (patch)
tree89e141b5538604b9557e73c72fea2b933a33205b /tests
parentdba57690c10397235f8422c33a757e377941907a (diff)
Use less indentation.
Signed-off-by: tianhe1986 <w1s2j3229@163.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/database/query_builder/group_test.php44
1 files changed, 22 insertions, 22 deletions
diff --git a/tests/codeigniter/database/query_builder/group_test.php b/tests/codeigniter/database/query_builder/group_test.php
index 785754ec1..51266e858 100644
--- a/tests/codeigniter/database/query_builder/group_test.php
+++ b/tests/codeigniter/database/query_builder/group_test.php
@@ -56,11 +56,11 @@ class Group_test extends CI_TestCase {
public function test_having_in()
{
$jobs = $this->db->select('name')
- ->from('job')
- ->group_by('name')
- ->having_in('SUM(id)', array(1, 2, 5))
- ->get()
- ->result_array();
+ ->from('job')
+ ->group_by('name')
+ ->having_in('SUM(id)', array(1, 2, 5))
+ ->get()
+ ->result_array();
$this->assertEquals(2, count($jobs));
}
@@ -73,12 +73,12 @@ class Group_test extends CI_TestCase {
public function test_or_having_in()
{
$jobs = $this->db->select('name')
- ->from('job')
- ->group_by('name')
- ->or_having_in('SUM(id)', array(1, 5))
- ->or_having_in('SUM(id)', array(2, 6))
- ->get()
- ->result_array();
+ ->from('job')
+ ->group_by('name')
+ ->or_having_in('SUM(id)', array(1, 5))
+ ->or_having_in('SUM(id)', array(2, 6))
+ ->get()
+ ->result_array();
$this->assertEquals(2, count($jobs));
}
@@ -91,11 +91,11 @@ class Group_test extends CI_TestCase {
public function test_having_not_in()
{
$jobs = $this->db->select('name')
- ->from('job')
- ->group_by('name')
- ->having_not_in('SUM(id)', array(3, 6))
- ->get()
- ->result_array();
+ ->from('job')
+ ->group_by('name')
+ ->having_not_in('SUM(id)', array(3, 6))
+ ->get()
+ ->result_array();
$this->assertEquals(3, count($jobs));
}
@@ -108,12 +108,12 @@ class Group_test extends CI_TestCase {
public function test_or_having_not_in()
{
$jobs = $this->db->select('name')
- ->from('job')
- ->group_by('name')
- ->or_having_not_in('SUM(id)', array(1, 2, 3))
- ->or_having_not_in('SUM(id)', array(1, 3, 4))
- ->get()
- ->result_array();
+ ->from('job')
+ ->group_by('name')
+ ->or_having_not_in('SUM(id)', array(1, 2, 3))
+ ->or_having_not_in('SUM(id)', array(1, 3, 4))
+ ->get()
+ ->result_array();
$this->assertEquals(2, count($jobs));
}