From c44aca24f0732afab3134d94b4bbc2f3556a65f7 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Sat, 30 Jul 2016 20:52:44 -0400 Subject: [PATCH] Fix a couple of imports in unittests --- unittests/test_lib_plot.py | 2 +- unittests/test_lib_throbber.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/unittests/test_lib_plot.py b/unittests/test_lib_plot.py index b6ad5c25..a2face6e 100644 --- a/unittests/test_lib_plot.py +++ b/unittests/test_lib_plot.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- import unittest -import wtc +from unittests import wtc import wx import wx.lib.plot as wxplot diff --git a/unittests/test_lib_throbber.py b/unittests/test_lib_throbber.py index 3bc2bbcd..1b673b6c 100644 --- a/unittests/test_lib_throbber.py +++ b/unittests/test_lib_throbber.py @@ -4,7 +4,7 @@ import wx import wx.lib.throbber as th -import throbImages +from unittests import throbImages #---------------------------------------------------------------------------