Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-hortelan authored and github-actions[bot] committed Jan 5, 2024
1 parent d224a0f commit 681e79d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/RequestsGraphRecorderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
Config::set('pulse.recorders.'.RequestsGraphRecorder::class.'.record_client_error', true);
get('test-route-client-error')->assertStatus(400);

Pulse::ignore(fn () => expect(DB::table('pulse_aggregates')->where('type','client_error')->get())->toHaveCount(4));
Pulse::ignore(fn () => expect(DB::table('pulse_aggregates')->where('type', 'client_error')->get())->toHaveCount(4));
Pulse::ignore(fn () => expect(DB::table('pulse_entries')->count())->toBe(0));
Pulse::ignore(fn () => expect(DB::table('pulse_values')->count())->toBe(0));
Pulse::ignore(fn () => expect(DB::table('pulse_values')->count())->toBe(0));
});

it('does not capture successful requests', function () {
Expand Down

0 comments on commit 681e79d

Please sign in to comment.