test/test_fifo: do not use relative import
This way the test can simply be run with: python -m unittest test_fifo.py
This commit is contained in:
parent
502a2871bc
commit
205908791a
|
@ -3,7 +3,7 @@ import unittest
|
|||
from migen.fhdl.std import *
|
||||
from migen.genlib.fifo import SyncFIFO, AsyncFIFO
|
||||
|
||||
from .support import SimCase, SimBench
|
||||
from migen.test.support import SimCase, SimBench
|
||||
|
||||
class SyncFIFOCase(SimCase):
|
||||
class TestBench(SimBench):
|
||||
|
|
Loading…
Reference in New Issue