We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e488535 commit c932148Copy full SHA for c932148
tests/Jobs/RecordMetricTest.php
@@ -241,11 +241,11 @@
241
(new RecordMetric($data))->handle();
242
243
244
- $recorded = Metric::first();
+ $metric = Metric::first();
245
246
- expect($recorded->source)->toBe('google');
247
- expect($recorded->country)->toBe('US');
248
- expect($recorded->value)->toBe(2);
+ expect($metric->source)->toBe('google');
+ expect($metric->country)->toBe('US');
+ expect($metric->value)->toBe(2);
249
});
250
251
it('cannot override core attributes with additional attributes', function () {
0 commit comments