Skip to content

Commit a49e7a6

Browse files
committed
use package in tests
1 parent 07bbb28 commit a49e7a6

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

tests/extension_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
from gextension import Extension
3+
from g_python.gextension import Extension
44

55
extension_info = {
66
"title": "Extension stuff",

tests/inventory_items.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22

3-
from gextension import Extension
4-
from htools import Inventory
3+
from g_python.gextension import Extension
4+
from g_python.htools import Inventory
55

66
extension_info = {
77
"title": "Inventory items",

tests/packet_logger.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22

3-
from gextension import Extension
4-
from hmessage import Direction
3+
from g_python.gextension import Extension
4+
from g_python.hmessage import Direction
55

66
extension_info = {
77
"title": "Packet Logger",

tests/packets_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import sys
22

3-
from gextension import Extension
4-
from hmessage import Direction
5-
from hpacket import HPacket
3+
from g_python.gextension import Extension
4+
from g_python.hmessage import Direction
5+
from g_python.hpacket import HPacket
66

77
extension_info = {
88
"title": "Packets example",

tests/room_stuff.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22

3-
from gextension import Extension
4-
from htools import RoomFurni, RoomUsers
3+
from g_python.gextension import Extension
4+
from g_python.htools import RoomFurni, RoomUsers
55

66
extension_info = {
77
"title": "Room stuff",

tests/user_profile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import sys
22

3-
import hparsers
4-
from gextension import Extension
5-
from hmessage import Direction
3+
from g_python import hparsers
4+
from g_python.gextension import Extension
5+
from g_python.hmessage import Direction
66

77
extension_info = {
88
"title": "User profile",

0 commit comments

Comments
 (0)