summaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-06-06 21:47:39 -0400
committerDan Davison <dandavison7@gmail.com>2020-06-06 21:47:39 -0400
commite68aae8cf654f397d9309ffd06ac656e97631f2c (patch)
treec17d57316143f4c32cbbdde7a8fd34671f570fa9 /src/tests
parente39da2aaa68099ab004184d9b2e6f31cffd0be3d (diff)
Add failing test that --theme still works
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/integration_test_utils.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/integration_test_utils.rs b/src/tests/integration_test_utils.rs
index ad554097..5737b4d0 100644
--- a/src/tests/integration_test_utils.rs
+++ b/src/tests/integration_test_utils.rs
@@ -13,7 +13,7 @@ pub mod integration_test_utils {
pub fn get_command_line_options() -> cli::Opt {
let mut opt = cli::Opt::from_iter(Vec::<OsString>::new());
- opt.syntax_theme = None; // TODO: Why does opt.theme have the value Some("")?
+ opt.syntax_theme = None; // TODO: Why does opt.syntax_theme have the value Some("")?
opt
}