summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2019-07-20 10:55:43 -0400
committerrsiddharth <rsd@gnu.org>2019-07-20 10:55:43 -0400
commitf34b276dd95659be1bc214aaff604a817c56587e (patch)
tree3c1d31a92f04879cda473a0fc28f0b6a43f09fa6
parent302b5e0964871f79cc781db18b52b7c04d9462af (diff)
tests: Update test_lps_gen.py.
* tests/test_lps_gen.py: Explicitly list all things that need to be imported from lps_gen.
-rw-r--r--tests/test_lps_gen.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_lps_gen.py b/tests/test_lps_gen.py
index c9ae0ed..bb8c519 100644
--- a/tests/test_lps_gen.py
+++ b/tests/test_lps_gen.py
@@ -21,7 +21,10 @@ from icalendar import vCalAddress, vText, vDatetime
from nose.tools import *
from pytz import timezone
-from lps_gen import *
+from lps_gen import (read_file, write_file, json_write, json_read,
+ json_write, template_read, LPiCal, LPSRenderer,
+ LPSpeakersRenderer, LPSMarkdown,
+ LPSpeakersMarkdown, RenderHTML)
class TestJSONUtils(object):