Skip to content

Commit

Permalink
Fix tests on Python 2.6
Browse files Browse the repository at this point in the history
(cherry picked from commit 311622b)
  • Loading branch information
dstufft committed Feb 5, 2015
1 parent 93a4984 commit 8393253
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/functional/test_freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ def test_freeze_git_clone(script, tmpdir):
)
result = script.run(
'python', 'setup.py', 'develop',
cwd=repo_dir
cwd=repo_dir,
expect_stderr=True,
)
result = script.pip('freeze', expect_stderr=True)
expected = textwrap.dedent(
Expand Down Expand Up @@ -279,6 +280,7 @@ def test_freeze_bazaar_clone(script, tmpdir):
result = script.run(
'python', 'setup.py', 'develop',
cwd=script.scratch_path / 'django-wikiapp',
expect_stderr=True,
)
result = script.pip('freeze', expect_stderr=True)
expected = textwrap.dedent("""\
Expand Down

0 comments on commit 8393253

Please sign in to comment.