summaryrefslogtreecommitdiffstats
path: root/src/tests/integration_test_utils.rs
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-06-06 21:43:45 -0400
committerDan Davison <dandavison7@gmail.com>2020-06-06 21:43:45 -0400
commite39da2aaa68099ab004184d9b2e6f31cffd0be3d (patch)
tree41db5341b137381cf16b67c704b918393aff0729 /src/tests/integration_test_utils.rs
parentc887a9960466654b9fde56661d924ccc600c0af5 (diff)
Use 'syntax_theme' instead of 'theme' everywhere
Diffstat (limited to 'src/tests/integration_test_utils.rs')
-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 1b96537d..ad554097 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.theme = None; // TODO: Why does opt.theme have the value Some("")?
+ opt.syntax_theme = None; // TODO: Why does opt.theme have the value Some("")?
opt
}