From 324225e7958f705b142328fc7524a6d3b0e5d0e7 Mon Sep 17 00:00:00 2001 From: Christoph Miksche Date: Mon, 26 Aug 2019 22:49:48 +0200 Subject: [PATCH] fix: version import in tests --- tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests.py b/tests.py index 1957465..e401321 100644 --- a/tests.py +++ b/tests.py @@ -6,10 +6,10 @@ All rights reserved. License: GNU General Public License ''' -import update.version +import gitea_auto_update.lib.version import unittest -version = update.version.Version('', '') +version = gitea_auto_update.lib.version.Version('', '') class Tests(unittest.TestCase):