Skip to content

Commit 187b201

Browse files
committed
fix(pre-commit): Break line
1 parent d630355 commit 187b201

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pytest-embedded-arduino/tests/test_arduino.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ def test_arduino_serial_flash(testdir):
77
import pytest
88
99
def test_arduino_app(app, dut):
10-
assert app.binary_file == os.path.join(testdir.tmpdir, 'hello_world_arduino/build/hello_world_arduino.ino.merged.bin')
10+
expected_bin = os.path.join(
11+
testdir.tmpdir,
12+
'hello_world_arduino/build/hello_world_arduino.ino.merged.bin'
13+
)
14+
assert app.binary_file == expected_bin
1115
assert app.target == 'esp32'
1216
assert app.fqbn == 'espressif:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app'
1317
dut.expect('Hello Arduino!')

0 commit comments

Comments
 (0)