Skip to content

Commit

Permalink
Issue #712. Make sure we don't send fixture data for test_api_urls te…
Browse files Browse the repository at this point in the history
…sts.
  • Loading branch information
Mike Taylor committed Oct 22, 2015
1 parent 2635165 commit 2e4cc77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_api_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@

class TestAPIURLs(unittest.TestCase):
def setUp(self):
webcompat.app.config['TESTING'] = True
# Switch to False here because we don't want to send the mocked
# Fixture data. Which is OK because these don't touch GitHub API data.
webcompat.app.config['TESTING'] = False
self.app = webcompat.app.test_client()

def tearDown(self):
Expand Down

0 comments on commit 2e4cc77

Please sign in to comment.