Skip to content

Commit

Permalink
fix: stupid error
Browse files Browse the repository at this point in the history
  • Loading branch information
dubloom committed Jan 20, 2025
1 parent 1d5fa10 commit e725ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/internal/bytecode_injection/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ddtrace.internal.bytecode_injection.core import inject_invocation

skipif_bytecode_injection_not_supported = pytest.mark.skipif(
sys.version_info[:2] < (3, 10) and sys.version_info[:2] > (3, 11),
sys.version_info[:2] < (3, 10) or sys.version_info[:2] > (3, 11),
reason="Injection is currently only supported for 3.10 and 3.11",
)

Expand Down

0 comments on commit e725ec4

Please sign in to comment.