Fix typo
This commit is contained in:
parent
661c0e6432
commit
a13235c032
4 changed files with 9 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
|||
import pytest
|
||||
|
||||
from util.config.validators import ConfigValidationException
|
||||
from util.config.validators.validate_actionlog_achiving import ActionLogAchivingValidator
|
||||
from util.config.validators.validate_actionlog_archiving import ActionLogArchivingValidator
|
||||
|
||||
from test.fixtures import *
|
||||
|
||||
|
@ -11,7 +11,7 @@ from test.fixtures import *
|
|||
({'ACTION_LOG_ARCHIVE_LOCATION': ''}),
|
||||
])
|
||||
def test_skip_validate_actionlog(unvalidated_config, app):
|
||||
validator = ActionLogAchivingValidator()
|
||||
validator = ActionLogArchivingValidator()
|
||||
validator.validate(unvalidated_config, None, None)
|
||||
|
||||
|
||||
|
@ -30,7 +30,7 @@ def test_skip_validate_actionlog(unvalidated_config, app):
|
|||
'Action log archive storage location `invalid` not found in storage config'),
|
||||
])
|
||||
def test_invalid_config(config, expected_error, app):
|
||||
validator = ActionLogAchivingValidator()
|
||||
validator = ActionLogArchivingValidator()
|
||||
|
||||
with pytest.raises(ConfigValidationException) as ipe:
|
||||
validator.validate(config, None, None)
|
||||
|
@ -47,5 +47,5 @@ def test_valid_config(app):
|
|||
},
|
||||
}
|
||||
|
||||
validator = ActionLogAchivingValidator()
|
||||
validator = ActionLogArchivingValidator()
|
||||
validator.validate(config, None, None)
|
||||
|
|
Reference in a new issue