Skip to content

Commit 61aaa70

Browse files
stirbyS1M0N38
authored andcommitted
chore: relative import on conftest in test_connection.py
1 parent 4ee32cc commit 61aaa70

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/lua/test_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
import socket
55

66
import pytest
7-
from conftest import HOST, assert_error_response, receive_api_message, send_api_message
7+
8+
from .conftest import HOST, assert_error_response, receive_api_message, send_api_message
89

910

1011
def test_basic_connection(tcp_client: socket.socket) -> None:

tests/lua/test_protocol_errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from typing import Generator
66

77
import pytest
8-
from conftest import assert_error_response, receive_api_message, send_api_message
8+
from .conftest import assert_error_response, receive_api_message, send_api_message
99

1010
from balatrobot.enums import ErrorCode
1111

0 commit comments

Comments
 (0)