Skip to content

Commit 03ef2b3

Browse files
author
thepetk
committed
Fix assert case for older project
1 parent 2754707 commit 03ef2b3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

tests/test_gitlab_provider.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,15 @@ def test_get_all_projects(
145145
}
146146
},
147147
],
148-
) == 1
148+
)
149+
assert (
150+
len(
151+
[
152+
result_page
153+
for result_page in gitlab_provider_fixture.get_all_projects(
154+
GRAPHQL_LIST_PROJECTS_QUERY
155+
)
156+
]
157+
)
158+
== 1
159+
)

0 commit comments

Comments
 (0)