From 18c3012a317bbc7ff90b2faae925fc0d8a99cb65 Mon Sep 17 00:00:00 2001 From: Jeff Tratner Date: Thu, 25 May 2017 22:50:20 -0700 Subject: [PATCH] Typo in pytest match --- pandas/tests/io/parser/test_parsers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/io/parser/test_parsers.py b/pandas/tests/io/parser/test_parsers.py index f2c1d640a04e6..5cbd543000fa4 100644 --- a/pandas/tests/io/parser/test_parsers.py +++ b/pandas/tests/io/parser/test_parsers.py @@ -112,4 +112,4 @@ def test_unknown_engine(self): fp.flush() with pytest.raises(ValueError) as exc_info: read_csv(fp.name, engine='pyt') - exc_info.matches('Unknown engine') + exc_info.match('Unknown engine')