Skip to content

Commit

Permalink
Merge pull request #947 from bareos/dev/joergs/master/systemtests-python
Browse files Browse the repository at this point in the history
systemtest python-pam: fix typos
  • Loading branch information
joergsteffens committed Oct 4, 2021
2 parents fae1b2c + ba1d874 commit 9c90338
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/plugins/include/python_plugins_common.h
Expand Up @@ -52,7 +52,7 @@

#define RETURN_RUNTIME_ERROR_IF_BAREOS_PLUGIN_CTX_UNSET() \
if (!plugin_ctx) { \
PyErr_SetString(PyExc_RuntimeError, AT " :plugin_ctx is unset"); \
PyErr_SetString(PyExc_RuntimeError, AT ": plugin_ctx is unset"); \
return NULL; \
}

Expand Down
2 changes: 1 addition & 1 deletion systemtests/tests/python-pam/pamlogintest.py
Expand Up @@ -40,7 +40,7 @@ class PamLoginTest(bareos_unittest.Base):

@classmethod
def setUpClass(cls):
super(PythonBareosPamLoginTest, cls).setUpClass()
super(PamLoginTest, cls).setUpClass()
cls.console_pam_username = u"PamConsole-notls"
cls.console_pam_password = u"secret"

Expand Down

0 comments on commit 9c90338

Please sign in to comment.