Skip to content

Commit 3d76fbb

Browse files
committed
Fix test case
1 parent e95cceb commit 3d76fbb

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Diff for: tests/test_bootstrap.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,17 @@ def test_all_bootstraps(self):
144144
"""A test which will initialize a bootstrap and will check if the
145145
method :meth:`~pythonforandroid.bootstrap.Bootstrap.all_bootstraps `
146146
returns the expected values, which should be: `empty", `service_only`,
147-
`webview`, `sdl2` and `qt`
147+
`webview`, `sdl2`, `sdl3` and `qt`
148148
"""
149-
expected_bootstraps = {"empty", "service_only", "service_library", "webview", "sdl2", "qt"}
149+
expected_bootstraps = {
150+
"empty",
151+
"service_only",
152+
"service_library",
153+
"webview",
154+
"sdl2",
155+
"sdl3",
156+
"qt",
157+
}
150158
set_of_bootstraps = Bootstrap.all_bootstraps()
151159
self.assertEqual(
152160
expected_bootstraps, expected_bootstraps & set_of_bootstraps

0 commit comments

Comments
 (0)