From 543a87149ebbabf6dbea387107dae4b6cecb7c3d Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Thu, 7 Dec 2023 07:48:02 -0500 Subject: [PATCH] chore: move venom tests to `tests/unit/compiler` the `tests/compiler` directory was moved to `tests/unit/` in 4dd47e302fc538c but this seems to have been missed in a merge during work on venom (cbac5aba53f87b) --- tests/{ => unit}/compiler/venom/test_duplicate_operands.py | 0 tests/{ => unit}/compiler/venom/test_multi_entry_block.py | 0 tests/{ => unit}/compiler/venom/test_stack_at_external_return.py | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename tests/{ => unit}/compiler/venom/test_duplicate_operands.py (100%) rename tests/{ => unit}/compiler/venom/test_multi_entry_block.py (100%) rename tests/{ => unit}/compiler/venom/test_stack_at_external_return.py (100%) diff --git a/tests/compiler/venom/test_duplicate_operands.py b/tests/unit/compiler/venom/test_duplicate_operands.py similarity index 100% rename from tests/compiler/venom/test_duplicate_operands.py rename to tests/unit/compiler/venom/test_duplicate_operands.py diff --git a/tests/compiler/venom/test_multi_entry_block.py b/tests/unit/compiler/venom/test_multi_entry_block.py similarity index 100% rename from tests/compiler/venom/test_multi_entry_block.py rename to tests/unit/compiler/venom/test_multi_entry_block.py diff --git a/tests/compiler/venom/test_stack_at_external_return.py b/tests/unit/compiler/venom/test_stack_at_external_return.py similarity index 100% rename from tests/compiler/venom/test_stack_at_external_return.py rename to tests/unit/compiler/venom/test_stack_at_external_return.py