From 04c8d6f3a1e5f8c7b72f7a982c2dbc051eaf9a95 Mon Sep 17 00:00:00 2001 From: Jerome Martinez Date: Mon, 20 Jan 2025 19:27:56 +0100 Subject: [PATCH] Test --- src/NoTimeToWaitBundle/Controller/DefaultController.php | 9 --------- .../Resources/views/Default/index.html.twig | 2 -- .../Resources/views/Default/nttw2.html.twig | 2 -- .../Tests/Controller/DefaultControllerTest.php | 3 ++- 4 files changed, 2 insertions(+), 14 deletions(-) diff --git a/src/NoTimeToWaitBundle/Controller/DefaultController.php b/src/NoTimeToWaitBundle/Controller/DefaultController.php index c99252fa..eebec690 100644 --- a/src/NoTimeToWaitBundle/Controller/DefaultController.php +++ b/src/NoTimeToWaitBundle/Controller/DefaultController.php @@ -17,15 +17,6 @@ public function indexAction() return ['noAds' => true]; } - /** - * @Route("/NoTimeToWait1", name="notimetowait_1") - * @Template() - */ - public function nttw1Action() - { - return ['noAds' => true]; - } - /** * @Route("/NoTimeToWait2", name="notimetowait_2") * @Template() diff --git a/src/NoTimeToWaitBundle/Resources/views/Default/index.html.twig b/src/NoTimeToWaitBundle/Resources/views/Default/index.html.twig index 2bef2492..fe76bcea 100644 --- a/src/NoTimeToWaitBundle/Resources/views/Default/index.html.twig +++ b/src/NoTimeToWaitBundle/Resources/views/Default/index.html.twig @@ -56,8 +56,6 @@ No Time To Wait 3 (2018, London)
No Time To Wait 2 (2017, Vienna) -
- No Time To Wait 1 (2016, Berlin)

diff --git a/src/NoTimeToWaitBundle/Resources/views/Default/nttw2.html.twig b/src/NoTimeToWaitBundle/Resources/views/Default/nttw2.html.twig index 5c9db2a7..5e00042c 100644 --- a/src/NoTimeToWaitBundle/Resources/views/Default/nttw2.html.twig +++ b/src/NoTimeToWaitBundle/Resources/views/Default/nttw2.html.twig @@ -41,8 +41,6 @@

The event will also present on the current state of the IETF’s CELLAR working group’s progress to develop specifications for Matroska and FFV1 as well as efforts to design and extend software in support of these formats. This event provides an opportunity for format inventors, developers, specification authors, and archivists to collaborate and advance audiovisual preservation formats.

-

Information about the 2016 No Time to Wait may be viewed here

-

When

Thursday, November 9, 2017 and Friday, November 10, 2017

diff --git a/src/NoTimeToWaitBundle/Tests/Controller/DefaultControllerTest.php b/src/NoTimeToWaitBundle/Tests/Controller/DefaultControllerTest.php index 567838fa..26fc5063 100644 --- a/src/NoTimeToWaitBundle/Tests/Controller/DefaultControllerTest.php +++ b/src/NoTimeToWaitBundle/Tests/Controller/DefaultControllerTest.php @@ -31,7 +31,6 @@ public function urlProvider() { return [ ['/NoTimeToWait'], - ['/NoTimeToWait1'], ['/NoTimeToWait2'], ['/NoTimeToWait3'], ['/QCWorkshop2018'], @@ -39,6 +38,8 @@ public function urlProvider() ['/NoTimeToWait5'], ['/NoTimeToWait6'], ['/NoTimeToWait7'], + ['/NoTimeToWait8'], + ['/NoTimeToWait9'], ]; } }