Skip to content

Commit 992ffb9

Browse files
committed
Revert format in tests/integration_tests/build/test_clippy.py
Signed-off-by: StemCll [email protected]
1 parent f709c7c commit 992ffb9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/integration_tests/build/test_clippy.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99

1010
SUCCESS_CODE = 0
1111
MACHINE = platform.machine()
12-
TARGETS = [
13-
"{}-unknown-linux-gnu".format(MACHINE),
14-
"{}-unknown-linux-musl".format(MACHINE),
15-
]
12+
TARGETS = ["{}-unknown-linux-gnu".format(MACHINE),
13+
"{}-unknown-linux-musl".format(MACHINE)]
1614

1715

18-
@pytest.mark.parametrize("target", TARGETS)
16+
@pytest.mark.parametrize(
17+
"target",
18+
TARGETS
19+
)
1920
def test_rust_clippy(target):
2021
"""
2122
Test that clippy does not generate any errors/warnings.
22-
2323
@type: build
2424
"""
2525
utils.run_cmd(
26-
"cargo clippy --target {} --all --profile test" " -- -D warnings".format(target)
27-
)
26+
'cargo clippy --target {} --all --profile test'
27+
' -- -D warnings'.format(target))

0 commit comments

Comments
 (0)