summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-18 10:11:07 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-18 10:11:07 -0500
commit948b7fbaaa58c0a825938f7e8bda9a07ec39239b (patch)
tree15eb1d245dac847d92c606fff85c65a7d9e0f79b /tests/integration
parentde128dbad860478496a0d655b5eb5c1005ebbabe (diff)
Add mandatory argument "project_id" to API method "updateSwimlane()"
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/SwimlaneProcedureTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/SwimlaneProcedureTest.php b/tests/integration/SwimlaneProcedureTest.php
index afd2b3b4..a3c2397a 100644
--- a/tests/integration/SwimlaneProcedureTest.php
+++ b/tests/integration/SwimlaneProcedureTest.php
@@ -37,7 +37,7 @@ class SwimlaneProcedureTest extends BaseProcedureTest
public function assertUpdateSwimlane()
{
- $this->assertTrue($this->app->updateSwimlane($this->swimlaneId, 'Another swimlane'));
+ $this->assertTrue($this->app->updateSwimlane($this->projectId, $this->swimlaneId, 'Another swimlane'));
$swimlane = $this->app->getSwimlaneById($this->swimlaneId);
$this->assertEquals('Another swimlane', $swimlane['name']);