From 3c3b4efe6f652cf3b52481616a15ecbae156bf24 Mon Sep 17 00:00:00 2001 From: Sascha Doemer Date: Sat, 11 May 2024 16:30:45 +0200 Subject: [PATCH] Refactor auth tests location The commit renames and moves the 'test_auth.py' file to a more specific directory within the tests folder. This new location 'agrirouter/auth/' better represents its purpose in the project structure. --- tests/agrirouter/auth/__init__.py | 0 tests/{ => agrirouter/auth}/test_auth.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/agrirouter/auth/__init__.py rename tests/{ => agrirouter/auth}/test_auth.py (100%) diff --git a/tests/agrirouter/auth/__init__.py b/tests/agrirouter/auth/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/test_auth.py b/tests/agrirouter/auth/test_auth.py similarity index 100% rename from tests/test_auth.py rename to tests/agrirouter/auth/test_auth.py