summaryrefslogtreecommitdiff
path: root/tests/units
diff options
context:
space:
mode:
authorMichael Lüpkes <michael@luepkes.net>2015-02-03 11:32:51 +0100
committerMichael Lüpkes <michael@luepkes.net>2015-02-03 11:32:51 +0100
commit4bf6e6d5c4efe811f722aeccbc8dfa02426772ec (patch)
treef33890754a92757a9dc475497edfdc9eb0ca73f8 /tests/units
parent644f511df286aa2ef032fc8d4361df654ea71968 (diff)
Another fix for 5.3 syntax (see above)
Diffstat (limited to 'tests/units')
-rw-r--r--tests/units/SwimlaneTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/units/SwimlaneTest.php b/tests/units/SwimlaneTest.php
index 0694f08a..37226613 100644
--- a/tests/units/SwimlaneTest.php
+++ b/tests/units/SwimlaneTest.php
@@ -403,6 +403,7 @@ class SwimlaneTest extends Base
$this->assertEquals('S2', $swimlanes[1]['name']);
$this->assertEquals(6, $swimlanes[2]['id']);
$this->assertEquals('S3', $swimlanes[2]['name']);
- $this->assertEquals('New Default', $s->getDefault(2)['default_swimlane']);
+ $new_default = $s->getDefault(2);
+ $this->assertEquals('New Default', $new_default['default_swimlane']);
}
}