Skip to content

Commit ae9a17e

Browse files
committed
Apply fixes from StyleCI
1 parent b1d86bd commit ae9a17e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Support/SupportStringableTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,17 +173,17 @@ public function testWhenContainsAll()
173173
return $stringable->studly();
174174
}));
175175
}
176-
176+
177177
public function testDirname()
178178
{
179179
$this->assertSame('/framework/tests', (string) $this->stringable('/framework/tests/Support')->dirname());
180180
$this->assertSame('/framework', (string) $this->stringable('/framework/tests/Support')->dirname(2));
181-
181+
182182
$this->assertSame('/', (string) $this->stringable('/framework/')->dirname());
183-
183+
184184
$this->assertSame('/', (string) $this->stringable('/')->dirname());
185185
$this->assertSame('.', (string) $this->stringable('.')->dirname());
186-
186+
187187
// without slash
188188
$this->assertSame('.', (string) $this->stringable('framework')->dirname());
189189
}

0 commit comments

Comments
 (0)