Skip to content

Commit 2c373db

Browse files
committed
lint
1 parent 3a6bd53 commit 2c373db

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ $$\mid -3 \mid$$
8282

8383
#### `toBeLogarithmOf()`
8484
$$\log_{base}(number)$$
85+
<br>
8586
Base default is euler's number.
8687
```php
8788
expect(0.69897000433602)->toBeLogarithmOf(number: 5, base: 10);
8889
expect(1)->not->toBeLogarithmOf(number: 1);
8990
```
90-

Diff for: tests/toBeLogarithmOf.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
test('failures', function (float $number, float $base): void {
2222
expect(1)->toBeLogarithmOf($number, $base);
2323
})
24-
->with([
25-
[1, M_E],
26-
[-1, M_E],
27-
[1, -M_E],
28-
])
29-
->throws(ExpectationFailedException::class);
24+
->with([
25+
[1, M_E],
26+
[-1, M_E],
27+
[1, -M_E],
28+
])
29+
->throws(ExpectationFailedException::class);
3030

3131
test('failures not', function (): void {
3232
expect(0)->not->toBeLogarithmOf(1);

0 commit comments

Comments
 (0)