Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix flake8 checks #84

Merged
merged 1 commit into from
Oct 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions grafanalib/tests/test_grafanalib.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ def test_auto_id():
def test_row_show_title():
row = G.Row().to_json_data()
assert row['title'] == 'New row'
assert row['showTitle'] == False
assert not row['showTitle']

row = G.Row(title='My title').to_json_data()
assert row['title'] == 'My title'
assert row['showTitle'] == True
assert row['showTitle']

row = G.Row(title='My title', showTitle=False).to_json_data()
assert row['title'] == 'My title'
assert row['showTitle'] == False
assert not row['showTitle']