Merge pull request #30340 from jtand/seed_test_fix

Updated seed_test.py for changes made to seed module
This commit is contained in:
Mike Place 2016-01-13 15:50:34 -07:00
commit d5b8776355

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):
'''