Skip to content

Commit 6dc8586

Browse files
authored
Merge pull request #115 from oslokommune/flake8-fix
Fix error reported by the newest flake8 version
2 parents 272c8e6 + 40b0d39 commit 6dc8586

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pipeline/pipeline/pipeline_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def test_list_instances_for_pipeline(sdk, ok_pipeline, mock_list_instances):
5757
instances, error = pipeline.list_instances()
5858
assert error is None
5959
assert len(instances) == 2
60-
assert type(instances[0]) == PipelineInstance
60+
assert isinstance(instances[0], PipelineInstance)
6161

6262

6363
def test_client_exists_check(mock_get_pipeline):

0 commit comments

Comments
 (0)