Skip to content

Commit

Permalink
Merge pull request #13 from stfndamjanovic/composer-require-change
Browse files Browse the repository at this point in the history
Move pest test time package to require dev dependencies
  • Loading branch information
freekmurze authored Jan 19, 2023
2 parents 6408071 + 157bd82 commit 5d7d296
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10",
"spatie/laravel-package-tools": "^1.13.0",
"spatie/pest-plugin-test-time": "^1.1"
"spatie/laravel-package-tools": "^1.13.0"
},
"require-dev": {
"laravel/pint": "^1.0",
Expand All @@ -32,7 +31,8 @@
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.26"
"spatie/laravel-ray": "^1.26",
"spatie/pest-plugin-test-time": "^1.1"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/KeepsDeletedModelsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
$deletedModel = DeletedModel::first();

expect($deletedModel)
->key->toBe(1)
->key->toBe('1')
->model->toBe(TestModel::class);

expect($deletedModel->values)
Expand Down

0 comments on commit 5d7d296

Please sign in to comment.