Skip to content

Commit

Permalink
Merge pull request #4994 from mdboom/syntax-error
Browse files Browse the repository at this point in the history
Added a commit to white-list `test_texmanager`
  • Loading branch information
tacaswell committed Aug 29, 2015
2 parents 07aff06 + d5a0e5d commit 349ff97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/matplotlib/__init__.py
Expand Up @@ -1450,6 +1450,7 @@ def tk_window_focus():
'matplotlib.tests.test_subplots',
'matplotlib.tests.test_table',
'matplotlib.tests.test_text',
'matplotlib.tests.test_texmanager',
'matplotlib.tests.test_ticker',
'matplotlib.tests.test_tightlayout',
'matplotlib.tests.test_transforms',
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/tests/test_texmanager.py
Expand Up @@ -14,7 +14,7 @@ def test_fontconfig_preamble():
tm1 = TexManager()
font_config1 = tm1.get_font_config()

plt.rcParams['text.latex.preamble'] = [r'\usepackage{txfonts}']
plt.rcParams['text.latex.preamble'] = ['\\usepackage{txfonts}']
tm2 = TexManager()
font_config2 = tm2.get_font_config()

Expand Down

0 comments on commit 349ff97

Please sign in to comment.