Skip to content

Commit 4afb109

Browse files
committed
Tests update
1 parent 41ea30a commit 4afb109

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"orchestra/testbench": "^10.1||^9.0.0||^8.22.0",
3232
"mockery/mockery": "^1.4.4",
3333
"doctrine/coding-standard": "12.0.x-dev",
34-
"pestphp/pest": "^3",
34+
"pestphp/pest": "^3.8.2",
3535
"pestphp/pest-plugin-laravel": "^3",
3636
"laravel/pint": "^1.14",
3737
"nunomaduro/collision": "^8.1.1||^7.10.0",

tests/QueryBuilderMetricsAggregationTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,6 @@
100100
expect($items)->toHaveCount(13)
101101
->and($items)->toHaveKeys(['count', 'min', 'max', 'avg', 'sum', 'sum_of_squares', 'variance', 'variance_population', 'variance_sampling', 'std_deviation', 'std_deviation_population', 'std_deviation_sampling', 'std_deviation_bounds']);
102102

103-
$items = DB::table('items')->medianAbsoluteDeviation('amount');
104-
expect($items)->toBe(8.5);
105-
106103
$items = DB::table('items')->percentiles('amount');
107104
expect($items)->toHaveCount(7)
108105
->and($items)->toHaveKeys(['1.0', '5.0', '25.0']);

0 commit comments

Comments
 (0)