Skip to content

Commit

Permalink
testing: Also make the presence of 'macro:' disable defaults.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhelyer committed Aug 25, 2017
1 parent 05079d2 commit eee7c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/battery/testing/regular.volt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public:
if (!line.startsWith(btj.prefix)) {
break;
}
noDefault = line.startsWith(btj.noDefaultPrefix) != 0;
noDefault = line.startsWith(btj.noDefaultPrefix) != 0 || line.startsWith(btj.macroPrefix) != 0;
}
ifs.close();

Expand Down

0 comments on commit eee7c3c

Please sign in to comment.