Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Updated tests #63

Merged
merged 1 commit into from
Nov 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/Laravel/Parsers/Validation/NoWithDataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function testStructure()
'type' => 'ValidationException',
'data' => [
'foo' => ['The foo field is required.'],
'baz' => ['The baz format is invalid.'],
'baz' => ['The baz must be a valid URL.'],
],
],
],
Expand All @@ -62,7 +62,7 @@ public function testStructure()
'data' => [
'foo' => ['The foo field is required.'],
'bar' => ['The bar must be an integer.'],
'baz' => ['The baz format is invalid.'],
'baz' => ['The baz must be a valid URL.'],
],
],
],
Expand Down
4 changes: 2 additions & 2 deletions tests/Laravel/Parsers/Validation/NoWithNoDataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function testStructure()
'type' => 'ValidationException',
'data' => [
'foo' => ['The foo field is required.'],
'baz' => ['The baz format is invalid.'],
'baz' => ['The baz must be a valid URL.'],
],
],
],
Expand All @@ -64,7 +64,7 @@ public function testStructure()
'data' => [
'foo' => ['The foo field is required.'],
'bar' => ['The bar must be an integer.'],
'baz' => ['The baz format is invalid.'],
'baz' => ['The baz must be a valid URL.'],
],
],
],
Expand Down
4 changes: 2 additions & 2 deletions tests/Laravel/Parsers/Validation/WithDataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function testStructure()
'type' => 'ValidationException',
'data' => [
'foo' => ['The foo field is required.'],
'baz' => ['The baz format is invalid.'],
'baz' => ['The baz must be a valid URL.'],
],
],
],
Expand All @@ -61,7 +61,7 @@ public function testStructure()
'data' => [
'foo' => ['The foo field is required.'],
'bar' => ['The bar must be an integer.'],
'baz' => ['The baz format is invalid.'],
'baz' => ['The baz must be a valid URL.'],
],
],
],
Expand Down
4 changes: 2 additions & 2 deletions tests/Laravel/Parsers/Validation/WithNoDataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function testStructure()
'type' => 'ValidationException',
'data' => [
'foo' => ['The foo field is required.'],
'baz' => ['The baz format is invalid.'],
'baz' => ['The baz must be a valid URL.'],
],
],
],
Expand All @@ -63,7 +63,7 @@ public function testStructure()
'data' => [
'foo' => ['The foo field is required.'],
'bar' => ['The bar must be an integer.'],
'baz' => ['The baz format is invalid.'],
'baz' => ['The baz must be a valid URL.'],
],
],
],
Expand Down