Skip to content

Commit 4e58ba0

Browse files
committed
Fix test
1 parent 0001c07 commit 4e58ba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/MessagesTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public function it_should_return_a_list_of_validation_errors_when_posting_an_inv
129129
// When
130130
try {
131131
$slack->postMessage('https://slack.incoming.url/', $message);
132-
} catch(ValidationException $e) {
132+
} catch (ValidationException $e) {
133133
$this->assertIsArray($e->errors());
134134
$this->arrayHasKey('foo', $e->errors());
135135
$this->assertEquals(['foo' => 'bar'], $e->errors());

0 commit comments

Comments
 (0)