Skip to content

Commit c44e5ea

Browse files
committed
Fix over-indented continuation lines in Python code
Indent should always be 4 spaces.
1 parent c893955 commit c44e5ea

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/test_reportsizedeltas.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -205,15 +205,15 @@ def test_generate_report(self):
205205
report = report_size_deltas.generate_report(artifact_folder_object=artifact_folder_object,
206206
pr_head_sha=pr_head_sha, pr_number=pr_number)
207207
report_markdown = (
208-
report_size_deltas.report_key_beginning + pr_head_sha
209-
+ "](https://github.com/" + repository_name + "/pull/" + str(pr_number) + "/commits/" + pr_head_sha
210-
+ ")**\n\n"
211-
"FQBN | Flash Usage | RAM For Global Variables\n"
212-
"---|---|---\n"
213-
"adafruit:samd:adafruit_feather_m0 | 0 | N/A\n"
214-
"arduino:samd:mkrgsm1400 | N/A | N/A\n"
215-
"arduino:samd:mkrnb1500 | :green_heart: -24 | 0\n"
216-
"esp8266:esp8266:huzzah | :small_red_triangle: +32 | :small_red_triangle: +16")
208+
report_size_deltas.report_key_beginning + pr_head_sha
209+
+ "](https://github.com/" + repository_name + "/pull/" + str(pr_number) + "/commits/" + pr_head_sha
210+
+ ")**\n\n"
211+
"FQBN | Flash Usage | RAM For Global Variables\n"
212+
"---|---|---\n"
213+
"adafruit:samd:adafruit_feather_m0 | 0 | N/A\n"
214+
"arduino:samd:mkrgsm1400 | N/A | N/A\n"
215+
"arduino:samd:mkrnb1500 | :green_heart: -24 | 0\n"
216+
"esp8266:esp8266:huzzah | :small_red_triangle: +32 | :small_red_triangle: +16")
217217
self.assertEqual(report_markdown, report["markdown"])
218218

219219
report_data = [{'flash': 10580,

0 commit comments

Comments
 (0)