From 26958d5d3175f73b13a49f039cc03bb2aaec9d30 Mon Sep 17 00:00:00 2001 From: Sarthak Date: Fri, 4 Sep 2020 15:22:25 +0530 Subject: [PATCH] removed doc string --- pandas/tests/scalar/timestamp/test_constructors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/scalar/timestamp/test_constructors.py b/pandas/tests/scalar/timestamp/test_constructors.py index 316a299ba1cbb2..c70eacdfab03aa 100644 --- a/pandas/tests/scalar/timestamp/test_constructors.py +++ b/pandas/tests/scalar/timestamp/test_constructors.py @@ -267,7 +267,7 @@ def test_constructor_keyword(self): hour=1, minute=2, second=3, - microsecond=999999, + microsecond=999999 ) ) == repr(Timestamp("2015-11-12 01:02:03.999999"))