hub env: bump to require latest major version, less pinned now

This commit is contained in:
Erik Sundell
2021-10-19 11:56:16 +02:00
parent e194a1a3c7
commit 990135e179
4 changed files with 21 additions and 22 deletions

View File

@@ -148,13 +148,13 @@ def test_auth_dummy():
"""
c = apply_mock_config({
'auth': {
'type': 'dummyauthenticator.DummyAuthenticator',
'type': 'dummy',
'DummyAuthenticator': {
'password': 'test'
}
}
})
assert c.JupyterHub.authenticator_class == 'dummyauthenticator.DummyAuthenticator'
assert c.JupyterHub.authenticator_class == 'dummy'
assert c.DummyAuthenticator.password == 'test'