Skip to content

Commit 4ed4256

Browse files
committed
Fix linting issues
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent 785bc22 commit 4ed4256

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_purl_spec.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def run_test_case(case, test_type, desc):
151151
subpath=input_data.get("subpath"),
152152
)
153153
assert purl.to_string() == case["expected_output"]
154-
154+
155155
elif test_type == "validation":
156156
input_data = case["input"]
157157
purl = PackageURL(
@@ -163,9 +163,9 @@ def run_test_case(case, test_type, desc):
163163
subpath=input_data.get("subpath"),
164164
)
165165
test_group = case.get("test_group")
166-
strict=True
166+
strict = True
167167
if test_group == "advanced":
168-
strict=False
168+
strict = False
169169
messages = purl.validate(strict=strict)
170170
if case.get("expected_messages"):
171171
assert messages == case["expected_messages"]

0 commit comments

Comments
 (0)