summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorAlassane Yattara <alassane.yattara@savoirfairelinux.com>2023-11-21 14:49:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-23 12:06:06 +0000
commit26ac6923e23555d79423be0808f87c9091d30c6a (patch)
tree774913281ada8cebb95595603ab3055e51199863 /bitbake/lib
parentff3a48920ab0312cdd12ee6986853927d9f75910 (diff)
downloadpoky-26ac6923e23555d79423be0808f87c9091d30c6a.tar.gz
bitbake: toaster/tests/create_new_project: Code cleanup
Fixed - Select import, - Remove trailing whitespace, - Set excepted 2lines after imports (Bitbake rev: f0c91629fad2e556cd429f561cc244aef4b7b066) Signed-off-by: Alassane Yattara <alassane.yattara@savoirfairelinux.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/toaster/tests/functional/test_create_new_project.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/tests/functional/test_create_new_project.py b/bitbake/lib/toaster/tests/functional/test_create_new_project.py
index 051709b45e..dc7d1fc20b 100644
--- a/bitbake/lib/toaster/tests/functional/test_create_new_project.py
+++ b/bitbake/lib/toaster/tests/functional/test_create_new_project.py
@@ -9,11 +9,12 @@
9import re 9import re
10import pytest 10import pytest
11from django.urls import reverse 11from django.urls import reverse
12from selenium.webdriver.support.ui import Select 12from selenium.webdriver.support.select import Select
13from tests.functional.functional_helpers import SeleniumFunctionalTestCase 13from tests.functional.functional_helpers import SeleniumFunctionalTestCase
14from orm.models import Project 14from orm.models import Project
15from selenium.webdriver.common.by import By 15from selenium.webdriver.common.by import By
16 16
17
17@pytest.mark.django_db 18@pytest.mark.django_db
18class TestCreateNewProject(SeleniumFunctionalTestCase): 19class TestCreateNewProject(SeleniumFunctionalTestCase):
19 20