From 1bb7f300f4f5c31d47675ed018e9a46ecd4d8496 Mon Sep 17 00:00:00 2001 From: Michael Seifert Date: Tue, 6 Oct 2020 11:17:32 +0200 Subject: [PATCH] refactor: Removed the "_35" and "_36" suffixes from test modules. Test modules suffixed with "_35" or "_36" give the impression that they are specific to a Python version. This is no longer the case, though. The renamed modules are not specific to any Python version. Signed-off-by: Michael Seifert --- .../{test_async_fixtures_35.py => test_async_fixtures.py} | 0 .../{test_async_gen_fixtures_36.py => test_async_gen_fixtures.py} | 0 tests/async_fixtures/{test_nested_36.py => test_nested.py} | 0 tests/markers/{test_class_marker_35.py => test_class_marker.py} | 0 tests/markers/{test_module_marker_35.py => test_module_marker.py} | 0 tests/{test_event_loop_scope_35.py => test_event_loop_scope.py} | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename tests/async_fixtures/{test_async_fixtures_35.py => test_async_fixtures.py} (100%) rename tests/async_fixtures/{test_async_gen_fixtures_36.py => test_async_gen_fixtures.py} (100%) rename tests/async_fixtures/{test_nested_36.py => test_nested.py} (100%) rename tests/markers/{test_class_marker_35.py => test_class_marker.py} (100%) rename tests/markers/{test_module_marker_35.py => test_module_marker.py} (100%) rename tests/{test_event_loop_scope_35.py => test_event_loop_scope.py} (100%) diff --git a/tests/async_fixtures/test_async_fixtures_35.py b/tests/async_fixtures/test_async_fixtures.py similarity index 100% rename from tests/async_fixtures/test_async_fixtures_35.py rename to tests/async_fixtures/test_async_fixtures.py diff --git a/tests/async_fixtures/test_async_gen_fixtures_36.py b/tests/async_fixtures/test_async_gen_fixtures.py similarity index 100% rename from tests/async_fixtures/test_async_gen_fixtures_36.py rename to tests/async_fixtures/test_async_gen_fixtures.py diff --git a/tests/async_fixtures/test_nested_36.py b/tests/async_fixtures/test_nested.py similarity index 100% rename from tests/async_fixtures/test_nested_36.py rename to tests/async_fixtures/test_nested.py diff --git a/tests/markers/test_class_marker_35.py b/tests/markers/test_class_marker.py similarity index 100% rename from tests/markers/test_class_marker_35.py rename to tests/markers/test_class_marker.py diff --git a/tests/markers/test_module_marker_35.py b/tests/markers/test_module_marker.py similarity index 100% rename from tests/markers/test_module_marker_35.py rename to tests/markers/test_module_marker.py diff --git a/tests/test_event_loop_scope_35.py b/tests/test_event_loop_scope.py similarity index 100% rename from tests/test_event_loop_scope_35.py rename to tests/test_event_loop_scope.py