diff --git a/phpunit.xml b/phpunit.xml
index df49f6f9786df11e7b09353cfcb76604e47f69b5..bb9c4a7e1e5881a12c51429270455bfbbc7f735e 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -10,7 +10,7 @@
          stopOnFailure="false">
     <testsuites>
         <testsuite name="Feature">
-            <directory suffix="AddMemberTest.php">./tests/Feature</directory>
+            <directory suffix="Test.php">./tests/Feature</directory>
         </testsuite>
 
         <testsuite name="Unit">
diff --git a/tests/Feature/QuestionAnswerTest.php b/tests/Feature/QuestionAnswerTest.php
index 44034069164be38a375eeec44843008e3043b852..ed2f499cfa13f3b140c5080a83c442a2ba7ff7fa 100644
--- a/tests/Feature/QuestionAnswerTest.php
+++ b/tests/Feature/QuestionAnswerTest.php
@@ -119,10 +119,9 @@ class QuestionAnswerTest extends TestCase
                          ->see('Question Added');
         
         $dummy = Question::where('topic', 'Question for Testing')->first();
-        $written_on = 'Written on ' . $dummy->created_at->format('d M Y');
         $response = $this->actingAs($user)
                          ->visit('admin/questions')
-                         ->click($written_on)
+                         ->click('Question for Testing')
                          ->see('Written on')
                          ->see('Last Editted on')
                          ->see('by');