Skip to content

Commit

Permalink
fix: tweaked tests to avoid spurious mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelm committed Feb 14, 2022
1 parent 21cbb24 commit 81ae17e
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions tests/test_basic_command_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@

from broadworks_ocip import BroadworksAPI

BASIC_API_PARAMS = {
"host": "localhost",
"username": "username@example.com",
"password": "password",
"session_id": "00000000-1111-2222-3333-444444444444",
}

api = BroadworksAPI(**BASIC_API_PARAMS)
api = BroadworksAPI(
host="localhost",
username="username@example.com",
password="password",
session_id="00000000-1111-2222-3333-444444444444",
)


def canon_xml(inxml):
Expand Down

0 comments on commit 81ae17e

Please sign in to comment.