Skip to content

Commit

Permalink
Merge pull request #60917 from aphexcreations/brendoncrawford/fix-ter…
Browse files Browse the repository at this point in the history
…m-helper-config-test-error-fedora

Fixes tests error with faulty OS check when OS is Fedora
  • Loading branch information
Tyriar committed Oct 15, 2018
2 parents 3266781 + 5af04fb commit 51103bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ suite('Workbench - TerminalConfigHelper', () => {
configHelper.panelContainer = fixture;
if (isFedora) {
assert.equal(configHelper.getFont().fontFamily, '\'DejaVu Sans Mono\', monospace', 'Fedora should have its font overridden when terminal.integrated.fontFamily not set');
} if (isUbuntu) {
} else if (isUbuntu) {
assert.equal(configHelper.getFont().fontFamily, '\'Ubuntu Mono\', monospace', 'Ubuntu should have its font overridden when terminal.integrated.fontFamily not set');
} else {
assert.equal(configHelper.getFont().fontFamily, 'foo', 'editor.fontFamily should be the fallback when terminal.integrated.fontFamily not set');
Expand Down

0 comments on commit 51103bd

Please sign in to comment.