diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-04-03 14:05:42 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-04-03 14:05:42 -0500 |
commit | 958080be1673bc654adad03abc93a2d7d05c1386 (patch) | |
tree | 538d56be4e21170ecddd8ba8b154e1badd87544c /mediagoblin/tests/test_oauth.py | |
parent | d9f61cf7d746b71c3e45e4d6a9836443002ebb86 (diff) | |
download | mediagoblin-958080be1673bc654adad03abc93a2d7d05c1386.tar.lz mediagoblin-958080be1673bc654adad03abc93a2d7d05c1386.tar.xz mediagoblin-958080be1673bc654adad03abc93a2d7d05c1386.zip |
All mediagoblin tests now pass with py.test (switched setUp to setup)
Diffstat (limited to 'mediagoblin/tests/test_oauth.py')
-rw-r--r-- | mediagoblin/tests/test_oauth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tests/test_oauth.py b/mediagoblin/tests/test_oauth.py index 94ba5dab..518d1bb1 100644 --- a/mediagoblin/tests/test_oauth.py +++ b/mediagoblin/tests/test_oauth.py @@ -28,7 +28,7 @@ _log = logging.getLogger(__name__) class TestOAuth(object): - def setUp(self): + def setup(self): self.app = get_app() self.db = mg_globals.database |