Skip to content

Commit 05fc497

Browse files
committed
clean
1 parent 895e13e commit 05fc497

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Unit/Model/MappingTest/RelationTests/RleationToSpaceTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ public function test_relation_to_space () {
1414
$space = $this->cli->space();
1515
//
1616
$res = $space->disk_usage();
17-
$this->assertEquals( $space->spaceKey, $res->getSpaceKey());
17+
$this->assertEquals( $space->spaceKey, $res->getSpaceKey() );
1818
//
1919
$res = $space->resolutions();
20-
$this->assertEquals( $space->spaceKey, $res[0]->getSpaceKey());
20+
$this->assertEquals( $space->spaceKey, $res[0]->getSpaceKey() );
2121
//
2222
$project = $space->my_projects()[0];
23-
$this->assertEquals( $space->spaceKey, $project->getSpaceKey());
23+
$this->assertEquals( $space->spaceKey, $project->getSpaceKey() );
2424
//
25-
$pid = $space->project_ids(Backlog::PROJECTS_ONLY_MINE)[0];
26-
$this->assertEquals( $space->spaceKey, $this->cli->project($pid)->getSpaceKey());
25+
$pid = $space->project_ids( Backlog::PROJECTS_ONLY_MINE )[0];
26+
$this->assertEquals( $space->spaceKey, $this->cli->project( $pid )->getSpaceKey() );
2727
//
2828
$prios = $space->priorities();
2929
$this->assertEquals( $space->spaceKey, $prios[0]->getSpaceKey());

0 commit comments

Comments
 (0)