This commit is contained in:
@@ -6,7 +6,7 @@ test_logger = logging.getLogger('TEST ')
|
||||
test_logger.root.setLevel(logging.INFO)
|
||||
|
||||
|
||||
def testSaveUser(username, password):
|
||||
def testSaveUser(username: str, password: str):
|
||||
logging.info('STARTING SAVE USER TEST')
|
||||
auth = Authetication()
|
||||
auth.initConfig()
|
||||
@@ -26,7 +26,7 @@ def testSaveUser(username, password):
|
||||
test_logger.info('TEST 1 ---> Save VALID user :: FAILED')
|
||||
|
||||
|
||||
def testAuth(username, password):
|
||||
def testAuth(username: str, password: str):
|
||||
logging.info('STARTING AUTHENTICATION TEST')
|
||||
auth = Authetication()
|
||||
auth.initConfig()
|
||||
@@ -45,7 +45,7 @@ def testAuth(username, password):
|
||||
test_logger.info('TEST 2 --> Authentication test with INVALID ::FAILED')
|
||||
|
||||
|
||||
def testUserExists(username, password):
|
||||
def testUserExists(username: str, password: str):
|
||||
logging.info('STARTING USER EXISTS TEST')
|
||||
auth = Authetication()
|
||||
auth.initConfig()
|
||||
|
||||
Reference in New Issue
Block a user