From d18124f5edd6797099bc6788eff7549c6dc59da8 Mon Sep 17 00:00:00 2001 From: Anatoly Bubenkov Date: Tue, 12 Nov 2013 13:48:17 +0100 Subject: [PATCH] support python32 --HG-- branch : python32-test-fix --- testing/test_monkeypatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/test_monkeypatch.py b/testing/test_monkeypatch.py index 61a397a9c..99f77a646 100644 --- a/testing/test_monkeypatch.py +++ b/testing/test_monkeypatch.py @@ -46,10 +46,10 @@ class TestSetattrWithImportPath: assert _pytest.config.Config == 42 def test_unicode_string(self, monkeypatch): - monkeypatch.setattr(u"_pytest.config.Config", 42) + monkeypatch.setattr("_pytest.config.Config", 42) import _pytest assert _pytest.config.Config == 42 - monkeypatch.delattr(u"_pytest.config.Config") + monkeypatch.delattr("_pytest.config.Config") def test_wrong_target(self, monkeypatch): pytest.raises(TypeError, lambda: monkeypatch.setattr(None, None))