From 31defc16a4b2a6e75cb9dd84290d0da488dd014d Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 18 Feb 2017 15:06:11 +0000 Subject: [PATCH] Use the correct URL --- tests/Feature/ContactsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/ContactsTest.php b/tests/Feature/ContactsTest.php index d7653de8..643d37dc 100644 --- a/tests/Feature/ContactsTest.php +++ b/tests/Feature/ContactsTest.php @@ -38,7 +38,7 @@ class ContactsTest extends TestCase */ public function test_contact_page_with_specific_pic() { - $response = $this->get('/contacts/tantek'); + $response = $this->get('/contacts/aaron'); $response->assertViewHas('image', '/assets/profile-images/aaronparecki.com/image'); } }