118 - Updating the Other Tests

This commit is contained in:
Adam Wathan
2017-07-04 10:30:13 -04:00
parent ffee09b62a
commit b144cf5619
3 changed files with 13 additions and 6 deletions

View File

@@ -31,14 +31,15 @@ $factory->define(App\Concert::class, function (Faker\Generator $faker) {
},
'title' => 'Example Band',
'subtitle' => 'with The Fake Openers',
'additional_information' => 'Some sample additional information.',
'date' => Carbon::parse('+2 weeks'),
'ticket_price' => 2000,
'venue' => 'The Example Theatre',
'venue_address' => '123 Example Lane',
'city' => 'Fakeville',
'state' => 'ON',
'zip' => '90210',
'additional_information' => 'Some sample additional information.',
'ticket_price' => 2000,
'ticket_quantity' => 5,
];
});