Updated seed_test.py for changes made to seed module

This commit is contained in:
justinta89 2016-01-13 11:58:05 -07:00
parent 7e89a460e4
commit ee764ee952

View file

@ -56,7 +56,7 @@ class SeedTestCase(TestCase):
with patch.object(os.path, 'exists', return_value=True):
with patch.object(os, 'chmod', return_value=None):
with patch.object(shutil, 'copy', return_value=None):
self.assertEqual(seed.prep_bootstrap('mpt'), 'A')
self.assertEqual(seed.prep_bootstrap('mpt'), ('A', 'A'))
def test_apply_(self):
'''