Skip to content

Commit

Permalink
Fix condition typo
Browse files Browse the repository at this point in the history
  • Loading branch information
davidalber committed May 5, 2019
1 parent 8c94e2b commit bfe5e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/mod.rs
Expand Up @@ -810,7 +810,7 @@ impl ConfigCodeBlock {

fn get_block_config(&self) -> Config {
let mut config = Config::default();
if self.config_value.is_some() && self.config_value.is_some() {
if self.config_name.is_some() && self.config_value.is_some() {
config.override_value(
self.config_name.as_ref().unwrap(),
self.config_value.as_ref().unwrap(),
Expand Down

0 comments on commit bfe5e9c

Please sign in to comment.