From 3bd1f370323be3f1240f1b60c47b83bf7bf1f9ab Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Tue, 14 Nov 2017 20:45:38 +0000
Subject: [PATCH] Autoload tests namespace

---
 composer.json                                    | 5 +++++
 tests/FormatTalksBundle/Twig/FormatTalksTest.php | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/composer.json b/composer.json
index 761c5cb1..2719acee 100644
--- a/composer.json
+++ b/composer.json
@@ -27,6 +27,11 @@
         },
         "files": ["src/helpers.php"]
     },
+    "autoload-dev": {
+        "psr-4": {
+            "Tests\\": "tests"
+        }
+    },
     "extra": {
         "merge-plugin": {
             "include": [
diff --git a/tests/FormatTalksBundle/Twig/FormatTalksTest.php b/tests/FormatTalksBundle/Twig/FormatTalksTest.php
index eeec8f2b..155d2a60 100644
--- a/tests/FormatTalksBundle/Twig/FormatTalksTest.php
+++ b/tests/FormatTalksBundle/Twig/FormatTalksTest.php
@@ -1,6 +1,6 @@
 <?php
 
-namespace FormatTalksBundle\Tests\Twig;
+namespace Tests\FormatTalksBundle\Twig;
 
 use DateTime;
 use FormatTalksBundle\Twig\FormatTalksExtension;