diff options
author | narimiran <narimiran@disroot.org> | 2019-08-19 13:35:10 +0200 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2019-08-19 13:35:10 +0200 |
commit | ceb742351af3aa9caecd4828756ea3108806be52 (patch) | |
tree | e1b381529b8dac4bb2e96af42aa22679a7e1384f /nimpretty/tests/expected | |
parent | cf4390a24adde453cd3a4a1e4889305b61b295e4 (diff) | |
download | Nim-ceb742351af3aa9caecd4828756ea3108806be52.tar.gz |
nimpretty: fix #11937 (wrong indentation)
Diffstat (limited to 'nimpretty/tests/expected')
-rw-r--r-- | nimpretty/tests/expected/exhaustive.nim | 2 | ||||
-rw-r--r-- | nimpretty/tests/expected/wrong_ind.nim | 38 |
2 files changed, 39 insertions, 1 deletions
diff --git a/nimpretty/tests/expected/exhaustive.nim b/nimpretty/tests/expected/exhaustive.nim index 247ece887..3c2355707 100644 --- a/nimpretty/tests/expected/exhaustive.nim +++ b/nimpretty/tests/expected/exhaustive.nim @@ -812,7 +812,7 @@ let foo = if cond: let a = [[aaadsfas, bbb], - [ccc, ddd]] + [ccc, ddd]] let b = [ [aaa, bbb], diff --git a/nimpretty/tests/expected/wrong_ind.nim b/nimpretty/tests/expected/wrong_ind.nim index 9855e0c4d..95a35a8fd 100644 --- a/nimpretty/tests/expected/wrong_ind.nim +++ b/nimpretty/tests/expected/wrong_ind.nim @@ -71,3 +71,41 @@ proc a() = # comment 2 discard + + +proc i11937() = + result = %* + { + "_comment": "pbreports-style JSON", + "attributes": [], + "dataset_uuids": [], + "id": "microbial_asm_polishing_report", + "plotGroups": [], + "tables": [ + { + "columns": [ + { + "header": "Contig", + "id": "microbial", + "values": values_contig + }, + { + "header": "Length", + "id": "microbial", + "values": values_length + }, + { + "header": "Circular?", + "id": "microbial", + "values": values_circular + } + ], + "id": "microbial_asm_polishing_report.contigs_table", + "title": "Polished contigs from Microbial Assembly" + }, + ], + "tags": [], + "title": "Microbial Assembly Polishing Report", + "uuid": uuid, + "version": version + } |