Skip to content

Commit

Permalink
Dev: fix Response model call
Browse files Browse the repository at this point in the history
  • Loading branch information
ptelu committed Mar 2, 2020
1 parent b3ae94c commit cde34ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/backend/SaveEditedReponseTest.php
Expand Up @@ -89,7 +89,7 @@ public function testQuestionEditor()
$oNotifCOntainer = $this->waitForElementShim($web, '#notif-container', 20);
$web->wait(10)->until(WebDriverExpectedCondition::visibilityOf($oNotifCOntainer));

$question = Response::model(self::$surveyId)->findAllByAttributes([], 'id = :id', [':id' => $reponseID]);
$question = \Response::model(self::$surveyId)->findAllByAttributes([], 'id = :id', [':id' => $reponseID]);
$this->assertEquals('de', $question[0]->startlanguage);
}

Expand Down

0 comments on commit cde34ce

Please sign in to comment.