More relative imports.
authorRalph Bean <rbean@redhat.com>
Sun, 15 Nov 2015 23:02:25 +0000 (18:02 -0500)
committerRalph Bean <rbean@redhat.com>
Sun, 15 Nov 2015 23:02:25 +0000 (18:02 -0500)
19 files changed:
tests/python/tests/test_checksum.py
tests/python/tests/test_compression_wrapper.py
tests/python/tests/test_contentstat.py
tests/python/tests/test_crfile.py
tests/python/tests/test_load_metadata.py
tests/python/tests/test_locate_metadata.py
tests/python/tests/test_misc.py
tests/python/tests/test_package.py
tests/python/tests/test_parsepkg.py
tests/python/tests/test_repomd.py
tests/python/tests/test_repomdrecord.py
tests/python/tests/test_sqlite.py
tests/python/tests/test_updatecollection.py
tests/python/tests/test_updatecollectionpackage.py
tests/python/tests/test_updateinfo.py
tests/python/tests/test_updaterecord.py
tests/python/tests/test_updatereference.py
tests/python/tests/test_xml_file.py
tests/python/tests/test_xml_parser.py

index 10292f0e56b9e9df033348faf3ef3198c77663fe..dadf65ac220af03f6350a621b621c2a3882ffc91 100644 (file)
@@ -4,7 +4,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseChecksum(unittest.TestCase):
 
index 1e889c53bd620b9cc33e07481409d45a1029aa6a..fa5eb89b87261674589a40d29932ab7182fd6970 100644 (file)
@@ -2,7 +2,7 @@ import unittest
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseCompressionWrapper(unittest.TestCase):
     def test_compression_suffix(self):
index eb08f5d90fc96b35aeaa9cf817510f49eeba21d1..319bd34fddbaff74513e92acf71d2b930a79d8e7 100644 (file)
@@ -4,7 +4,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseContentStat(unittest.TestCase):
 
index f47963cd0b4573b7456e77df31fc1ca86ae051f3..e5adb72cf70d0b0057cd4b3d84ff93d2274a44ec 100644 (file)
@@ -4,7 +4,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseCrFile(unittest.TestCase):
 
index 80f125a727057503faf11eed842b51eeced05d92..e12a86fc9ed1ccca329c94c0d95a65e0e079d318 100644 (file)
@@ -1,7 +1,7 @@
 import unittest
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseLoadMetadata(unittest.TestCase):
     def test_load_metadata__repo00(self):
index f6e77f681086221a69f9a54d26c9dcc0d25e65fe..0bfa85d1c9f8d4835f014322ad7897b514296dca 100644 (file)
@@ -1,7 +1,7 @@
 import unittest
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseMetadataLocation(unittest.TestCase):
     def test_metadatalocation(self):
index 7e8353a50f9e9437d0c92aac8c8089c76ea106da..b95cd9a27241cb655e8c29fc8896615450de0bc2 100644 (file)
@@ -4,7 +4,7 @@ import unittest
 import shutil
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseMisc(unittest.TestCase):
 
index 57fa4522f5ff9174995d1a6ce6e3282e2857aef7..7bbbc0398c904bfcc205ea2e4698c179c1425e7e 100644 (file)
@@ -1,7 +1,7 @@
 import unittest
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCasePackage(unittest.TestCase):
     def test_package_empty(self):
index 0c94f32cd4f0f87247468033ea11215729ee0b6f..05695771a0535aca064862303922269b27fb2e56 100644 (file)
@@ -1,7 +1,7 @@
 import unittest
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseParsepkg(unittest.TestCase):
     def test_package_from_rpm(self):
index e54ce20e7a8b9bcf63d63c824722f1441638c1bd..283dedc8e96f5927cc9ba74158bca3ebf793e08c 100644 (file)
@@ -5,7 +5,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseRepomd(unittest.TestCase):
 
index 9f03a87b35ee80a214d8cd1a81583f2d70c69faf..9d2a14bb190dde61a1c5489f1bfb6de5020ca3ec 100644 (file)
@@ -4,7 +4,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseRepomdRecord(unittest.TestCase):
 
index 7e5698d8bbe80e016a0f5c561418336041de4aeb..2f022010c68afeb66ecfc8146fb70dee89655ebc 100644 (file)
@@ -5,7 +5,7 @@ import os.path
 import sqlite3
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseSqlite(unittest.TestCase):
 
index 6fcd644fc2712e8417d73566ab4d91a4267aaa77..f3433c03327a41b67af0b63f610a679b79041c90 100644 (file)
@@ -4,7 +4,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseUpdateCollection(unittest.TestCase):
 
index 4ba5d559209538a0da34137bb63d17f5ad05f051..6de809dfc9e5fc38d0de2618fa836b8c2b1c58d7 100644 (file)
@@ -4,7 +4,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseUpdateCollectionPackage(unittest.TestCase):
 
index edde1cd2ad77a302036009cd81def0848a3e47e8..f3b88e16e0d77f48852045bea6f3282e8cd31c17 100644 (file)
@@ -5,7 +5,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseUpdateInfo(unittest.TestCase):
 
index af07cde08b76f02c6baeecc2ceee1d11478c00f4..6777f049721056a9e759429950eab9f48f2ccf17 100644 (file)
@@ -5,7 +5,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseUpdateRecord(unittest.TestCase):
 
index f6d5aaf7857bdda8db996b7f73723cf901ab6ded..036d89893e4a8f4bbad00d9e510acda82aec8ae5 100644 (file)
@@ -4,7 +4,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseUpdateReference(unittest.TestCase):
 
index fa8ebbfc3c6a5c4ec4c302f397c60e906fd5d271..2244d1e339d03247f2def632fd393b32def1c3d0 100644 (file)
@@ -4,7 +4,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseXmlFile(unittest.TestCase):
 
index 51056628309b4e4958fede0d98213b2e3f6a85bb..a5f5d6a7b8707c203a0c69e2843e9640434a24ad 100644 (file)
@@ -5,7 +5,7 @@ import tempfile
 import os.path
 import createrepo_c as cr
 
-from fixtures import *
+from .fixtures import *
 
 class TestCaseXmlParserPrimary(unittest.TestCase):