Skip to content

Commit e9a1982

Browse files
committed
code formatting
1 parent d0b39ec commit e9a1982

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/unit/test_session.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ def test_as_swat():
442442
def test_version_info_35(get, _):
443443
"""Verify that Session.version_info() makes the correct HTTP call."""
444444
from sasctl.core import VersionInfo
445+
445446
s = Session("example.com", "user", "password")
446447

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

454455
url, params = get.call_args
455-
assert url[0] == '/licenses/grants'
456+
assert url[0] == "/licenses/grants"
456457

457458
assert isinstance(version, VersionInfo)
458459
assert version.major == 3

0 commit comments

Comments
 (0)