summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-11-19 15:13:48 +0100
committermsquare <msquare@notrademark.de>2017-11-19 15:13:48 +0100
commit15c50ab3153a53fbb93dbb9266a1f369ba6393ad (patch)
tree8bf81b2f54f7a416f190f86a19d61404421a4520 /tests
parentdeae2a17217a0de9f8f016b85fea71a33c90d22c (diff)
fix minor cody style issues (codacy)
Diffstat (limited to 'tests')
-rw-r--r--tests/Feature/Model/RoomModelTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Feature/Model/RoomModelTest.php b/tests/Feature/Model/RoomModelTest.php
index 3114ba2d..adf0218e 100644
--- a/tests/Feature/Model/RoomModelTest.php
+++ b/tests/Feature/Model/RoomModelTest.php
@@ -13,14 +13,14 @@ class RoomModelTest extends TestCase
require_once __DIR__ . '/../../../includes/engelsystem.php';
}
- public function create_Room()
+ public function createRoom()
{
$this->room_id = Room_create('test', false, true, '');
}
- public function test_Room()
+ public function testRoom()
{
- $this->create_Room();
+ $this->createRoom();
$room = Room($this->room_id);