Skip to content

Commit

Permalink
Change name of tested field to be more realistic
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Dec 18, 2022
1 parent 49df459 commit fa5539b
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,14 @@ public function test_command_with_text_input()
{
InputStreamHandler::mockInput("Hello\nWorld");
$this->makeSchemaFile([
'fields' => [[
'canonicalField' => 'description',
'fields' => [[
'type' => 'text',
'name' => 'title',
'name' => 'description',
'min' => '0',
'max' => '0',
],
],
],
]);
$this->artisan('make:publication test-publication')
->assertExitCode(0);
Expand Down

0 comments on commit fa5539b

Please sign in to comment.