We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbe42d2 commit 9b3c87dCopy full SHA for 9b3c87d
test/test_compile.py
@@ -211,7 +211,6 @@ def run_test(s):
211
# check from the logs if the bin file were uploaded on the current board
212
log_json = open(log_file_path, "r")
213
json_log_lines = log_json.readlines()
214
- print(log_file_path)
215
expected_trace_sequence = [
216
"Compile {sketch} for {fqbn} started".format(
217
sketch=sketch_path, fqbn=board.fqbn
@@ -224,7 +223,6 @@ def run_test(s):
224
223
),
225
"Upload successful",
226
]
227
- print(expected_trace_sequence)
228
assert is_message_sequence_in_json_log_traces(
229
expected_trace_sequence, json_log_lines
230
)
0 commit comments