fix tests' imports

This commit is contained in:
Roman Zeyde
2014-08-05 10:14:46 +03:00
parent a1a3979b7f
commit c34415df9d
6 changed files with 11 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
import common
from amodem import common
import numpy as np

View File

@@ -1,4 +1,4 @@
import ecc
from amodem import ecc
import random
import itertools

View File

@@ -2,9 +2,9 @@ import os
from cStringIO import StringIO
import numpy as np
import send
import recv
import common
from amodem import send
from amodem import recv
from amodem import common
import logging
logging.basicConfig(level=logging.DEBUG,

View File

@@ -1,4 +1,4 @@
import sampling
from amodem import sampling
import numpy as np

View File

@@ -1,8 +1,8 @@
import sigproc
import itertools
import config
from amodem import sigproc
from amodem import config
import numpy as np
import random
import itertools
def test_qam():

View File

@@ -1,5 +1,5 @@
import stream
import wave
from amodem import stream
from amodem import wave
def test():