Skip to content

Commit e82ba2f

Browse files
committed
IHF: StyleCI thanks.
1 parent 8b33a8c commit e82ba2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/db/DbMysqlVariableTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ public function it_returns_false_for_unexisting_mysql_variable()
1111
$mock->shouldReceive('selectOne')
1212
->withArgs(['show variables where variable_name = ?', ['fake']])
1313
->once()
14-
->andReturnNull()
15-
;
14+
->andReturnNull();
15+
1616
$this->assertFalse(db_mysql_variable('fake'));
1717
}
1818

@@ -28,8 +28,8 @@ public function it_returns_value_for_known_mysql_variable()
2828
$object->Variable_name = 'hostname';
2929
$object->Value = 'localhost';
3030
return $object;
31-
})
32-
;
31+
});
32+
3333
$this->assertEquals('localhost', db_mysql_variable('hostname'));
3434
}
3535
}

0 commit comments

Comments
 (0)