Skip to content

Commit 7c922bd

Browse files
committed
apply style ci changes
1 parent 1567108 commit 7c922bd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Integration/AssertionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function can_match_a_json_snapshot()
4444
/** @test */
4545
public function can_match_a_file_hash_snapshot()
4646
{
47-
$filePath = __DIR__ . '/stubs/example_snapshots/snapshot.json';
47+
$filePath = __DIR__.'/stubs/example_snapshots/snapshot.json';
4848

4949
$this->assertMatchesFileHashSnapshot($filePath);
5050
}

tests/Unit/Drivers/FileHashDriverTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function it_can_hash_a_file()
1313
{
1414
$driver = new FileHashDriver();
1515

16-
$filePath = __DIR__ . '/files/example-file.txt';
16+
$filePath = __DIR__.'/files/example-file.txt';
1717

1818
$expected = sha1_file($filePath);
1919

@@ -27,6 +27,6 @@ public function it_throws_an_exception_if_the_file_does_not_exist()
2727

2828
$this->expectException(Exception::class);
2929

30-
$driver->serialize(__DIR__ . '/files/fake-file-path');
30+
$driver->serialize(__DIR__.'/files/fake-file-path');
3131
}
3232
}

0 commit comments

Comments
 (0)