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:
Sebastien Bourdeauducq 2013-11-29 23:18:03 +01:00
parent 502a2871bc
commit 205908791a
1 changed files with 1 additions and 1 deletions

View File

@ -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):