Skip to content

Commit

Permalink
Removed printing of username and password
Browse files Browse the repository at this point in the history
  • Loading branch information
TheManWhoLikesToCode committed Jan 15, 2024
1 parent e3d7766 commit ac07c95
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions backend/features/steps/blackboard_session_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ def step_impl(context):
context.password = os.getenv('TEST_PASSWORD')
context.session = BlackboardSession(
username=context.username, password=context.password)
print(context.username, context.password)


@given('I have invalid username and password')
Expand All @@ -25,7 +24,6 @@ def step_impl(context):
def step_impl(context):
context.session.login()
context.response = context.session.get_response()
print(context.response)


@then('the response should be "Login successful."')
Expand Down

0 comments on commit ac07c95

Please sign in to comment.