Merge pull request #15708 from s0undt3ch/2014.7

Fix typo in comment
This commit is contained in:
Joseph Hall 2014-09-11 11:20:51 -06:00
commit 2825c447b3
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ def present(name,
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Extention {0} is already present'.format(name)}
'comment': 'Extension {0} is already present'.format(name)}
db_args = {
'maintenance_db': maintenance_db,
'runas': user,

View File

@ -367,7 +367,7 @@ class PostgresExtensionTestCase(TestCase):
ret = postgres_extension.present('foo')
self.assertEqual(
ret,
{'comment': 'Extention foo is already present',
{'comment': 'Extension foo is already present',
'changes': {}, 'name': 'foo', 'result': True}
)
ret = postgres_extension.present('foo')