diff --git a/testapp/app/app/tests/test_config.py b/testapp/app/app/tests/test_config.py
index 0999a03b..4b57ea9c 100644
--- a/testapp/app/app/tests/test_config.py
+++ b/testapp/app/app/tests/test_config.py
@@ -23,4 +23,4 @@ def test_get_config(self):
self.assertEqual(get_config('MENU')[0]['type'], 'title')
self.assertEqual(get_config('SUPPORT_HREF'), 'mailto:mail@otto.to.it')
self.assertEqual(get_config('POWERED_BY'), 'Otto srl')
- self.assertEqual(get_config('COPYRIGHT'), 'copyright © 2022 Otto srl')
+ self.assertEqual(get_config('COPYRIGHT'), 'copyright © 2024 Otto srl')
diff --git a/testapp/app/app/tests/test_e2e_index.py b/testapp/app/app/tests/test_e2e_index.py
index 8f1fe735..84fbf765 100644
--- a/testapp/app/app/tests/test_e2e_index.py
+++ b/testapp/app/app/tests/test_e2e_index.py
@@ -72,6 +72,6 @@ def test_footer(self):
self.assertEqual(links[0].find_element(By.CSS_SELECTOR, 'a').get_attribute('href'), 'mailto:mail@otto.to.it')
self.assertEqual(links[0].get_attribute('innerText').strip(), 'Support')
# copyright
- self.assertEqual(links[1].get_attribute('innerText').strip(), 'copyright © 2022 Otto srl')
+ self.assertEqual(links[1].get_attribute('innerText').strip(), 'copyright © 2024 Otto srl')
# powered by
self.assertEqual(links[2].get_attribute('innerText').strip(), 'Baton Test App · Developed by Otto srl')
diff --git a/testapp/app/app/tests/test_e2e_index_mobile.py b/testapp/app/app/tests/test_e2e_index_mobile.py
index fbe0d3ca..b69f1adf 100644
--- a/testapp/app/app/tests/test_e2e_index_mobile.py
+++ b/testapp/app/app/tests/test_e2e_index_mobile.py
@@ -102,6 +102,6 @@ def test_footer(self):
self.assertEqual(links[0].find_element(By.CSS_SELECTOR, 'a').get_attribute('href'), 'mailto:mail@otto.to.it')
self.assertEqual(links[0].get_attribute('innerText').strip(), 'Support')
# copyright
- self.assertEqual(links[1].get_attribute('innerText').strip(), 'copyright © 2022 Otto srl')
+ self.assertEqual(links[1].get_attribute('innerText').strip(), 'copyright © 2024 Otto srl')
# powered by
self.assertEqual(links[2].get_attribute('innerText').strip(), 'Baton Test App · Developed by Otto srl')