Skip to content

Commit

Permalink
Fixed some pyflakes warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pelme committed Dec 7, 2012
1 parent 9645dbd commit 9bbc23b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_without_django_loaded.py
Expand Up @@ -11,7 +11,7 @@ def no_ds(monkeypatch):


def test_no_ds(testdir):
f = testdir.makepyfile("""
testdir.makepyfile("""
import os
def test_env():
Expand All @@ -25,7 +25,7 @@ def test_cfg(pytestconfig):


def test_database(testdir):
f = testdir.makepyfile("""
testdir.makepyfile("""
import pytest
@pytest.mark.django_db
Expand All @@ -48,7 +48,7 @@ def test_transactional_db(transactional_db):


def test_client(testdir):
f = testdir.makepyfile("""
testdir.makepyfile("""
def test_client(client):
assert 0
Expand All @@ -61,7 +61,7 @@ def test_admin_client(admin_client):


def test_rf(testdir):
f = testdir.makepyfile("""
testdir.makepyfile("""
def test_rf(rf):
assert 0
""")
Expand All @@ -71,7 +71,7 @@ def test_rf(rf):


def test_settings(testdir):
f = testdir.makepyfile("""
testdir.makepyfile("""
def test_settings(settings):
assert 0
""")
Expand All @@ -81,7 +81,7 @@ def test_settings(settings):


def test_live_server(testdir):
f = testdir.makepyfile("""
testdir.makepyfile("""
def test_live_server(live_server):
assert 0
""")
Expand All @@ -91,7 +91,7 @@ def test_live_server(live_server):


def test_urls_mark(testdir):
f = testdir.makepyfile("""
testdir.makepyfile("""
import pytest
@pytest.mark.urls('foo.bar')
Expand Down

0 comments on commit 9bbc23b

Please sign in to comment.