We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e8708e commit c4fdc55Copy full SHA for c4fdc55
1 file changed
tests/Unit/Controller/ApiControllerTest.php
@@ -1026,7 +1026,7 @@ public function testGetSubmission_noPermissions() {
1026
->willReturn(false);
1027
1028
$this->expectException(NoSuchFormException::class);
1029
- $this->apiController->getSubmission(1, 42);
+ $this->apiController->getSubmission(1, 42);
1030
}
1031
1032
public function testGetSubmission_notFound() {
@@ -1065,7 +1065,7 @@ public function testGetSubmission_success() {
1065
'formId' => 1,
1066
'userId' => 'jdoe',
1067
// Add any other fields that SubmissionService::getSubmission would return, e.g., timestamp
1068
- 'timestamp' => 1234567890
+ 'timestamp' => 1234567890
1069
];
1070
1071
$this->formMapper->expects($this->once())
0 commit comments