Skip to content

Commit 6d1fb27

Browse files
authored
Fix settings TOML file name
I thought this was `config.toml`, but was actually `unitt.toml`. I have not documented that, since this should be deprecated, but not completely removed due to backward compatibility.
1 parent c81abbe commit 6d1fb27

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/app.art

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if standalone? ::
1515
]
1616

1717
settings: mergeSettings @[
18-
if exists? "config.toml" -> to :FileSettings ["config.toml"]
18+
if exists? "config.toml" -> to :FileSettings ["unitt.toml"]
1919
if exists? "config.art" -> to :FileSettings ["config.art"]
2020
to :CliSettings [args]
2121
]
@@ -36,3 +36,4 @@ if standalone? ::
3636
if and? (not? settings\silent)
3737
(results\failed?)
3838
-> panic.unstyled "Some tests failed!"
39+

0 commit comments

Comments
 (0)