From 948b7fbaaa58c0a825938f7e8bda9a07ec39239b Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 18 Feb 2017 10:11:07 -0500 Subject: Add mandatory argument "project_id" to API method "updateSwimlane()" --- tests/integration/SwimlaneProcedureTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/integration') 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']); -- cgit v1.2.3