summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2016-08-29 15:13:18 -0500
committerBryan Bishop <kanzure@gmail.com>2016-08-29 15:13:18 -0500
commit080bbf00ff93e334eb22e89fb980a64769b4aa01 (patch)
treec67cc7b8500aac4e400d4e8bfdbef57a57b63eb1
parent85ee624293900c78e9b02f1fcb4aa00c5b2140a5 (diff)
some python3-specific changespy3-continued
-rw-r--r--tests/bootstrapping.py2
-rw-r--r--tests/integration/tests.py6
-rw-r--r--tests/test_vba.py4
-rw-r--r--tests/test_vba_battle.py2
4 files changed, 7 insertions, 7 deletions
diff --git a/tests/bootstrapping.py b/tests/bootstrapping.py
index b71c19a..a8c2402 100644
--- a/tests/bootstrapping.py
+++ b/tests/bootstrapping.py
@@ -2,7 +2,7 @@
Functions to bootstrap the emulator state
"""
-from setup_vba import (
+from tests.setup_vba import (
vba,
autoplayer,
)
diff --git a/tests/integration/tests.py b/tests/integration/tests.py
index 024feab..e5ca6cd 100644
--- a/tests/integration/tests.py
+++ b/tests/integration/tests.py
@@ -155,6 +155,9 @@ class BasicTestCase(unittest.TestCase):
rom_segment = self.rom[0x112116:0x112116+8]
self.assertEqual(rom_segment, "HTTP/1.0")
+ def test_rom_text_at(self):
+ self.assertEquals(rom_text_at(0x112116, 8), b"HTTP/1.0")
+
def test_rom_interval(self):
address = 0x100
interval = 10
@@ -186,9 +189,6 @@ class BasicTestCase(unittest.TestCase):
addr2 = calculate_pointer_from_bytes_at(0x100, bank=True)
self.assertEqual(addr2, 0x2ec3)
- def test_rom_text_at(self):
- self.assertEquals(rom_text_at(0x112116, 8), "HTTP/1.0")
-
class TestRomStr(unittest.TestCase):
sample_text = "hello world!"
sample = None
diff --git a/tests/test_vba.py b/tests/test_vba.py
index 461cb65..a5f7589 100644
--- a/tests/test_vba.py
+++ b/tests/test_vba.py
@@ -5,13 +5,13 @@ from __future__ import print_function
import unittest
-from setup_vba import (
+from tests.setup_vba import (
vba,
autoplayer,
keyboard,
)
-from bootstrapping import (
+from tests.bootstrapping import (
bootstrap,
bootstrap_trainer_battle,
)
diff --git a/tests/test_vba_battle.py b/tests/test_vba_battle.py
index c6debc3..5664392 100644
--- a/tests/test_vba_battle.py
+++ b/tests/test_vba_battle.py
@@ -4,7 +4,7 @@ Tests for the battle controller
import unittest
-from setup_vba import (
+from tests.setup_vba import (
vba,
autoplayer,
)