Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jlwalke2 committed Feb 3, 2023
1 parent d0b39ec commit e9a1982
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ def test_as_swat():
def test_version_info_35(get, _):
"""Verify that Session.version_info() makes the correct HTTP call."""
from sasctl.core import VersionInfo

s = Session("example.com", "user", "password")

get.return_value.status_code = 200
Expand All @@ -452,7 +453,7 @@ def test_version_info_35(get, _):
assert get.call_count == 1

url, params = get.call_args
assert url[0] == '/licenses/grants'
assert url[0] == "/licenses/grants"

assert isinstance(version, VersionInfo)
assert version.major == 3
Expand Down

0 comments on commit e9a1982

Please sign in to comment.