From 64ed92a4fb54b384b89b394aad3641048dd91958 Mon Sep 17 00:00:00 2001 From: adedayo Date: Tue, 1 Oct 2019 16:15:39 +0100 Subject: [PATCH 1/2] Added doctstring to fixture --- pandas/tests/io/excel/conftest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandas/tests/io/excel/conftest.py b/pandas/tests/io/excel/conftest.py index 54acd2128369d..5ba0674af54fc 100644 --- a/pandas/tests/io/excel/conftest.py +++ b/pandas/tests/io/excel/conftest.py @@ -7,6 +7,9 @@ @pytest.fixture def frame(float_frame): + """ + Returns the first ten items in Fixture "float_frame" + """ return float_frame[:10] From bb60f5d8c0ab09ec5ccf1ec45fb1b7f049f43334 Mon Sep 17 00:00:00 2001 From: adedayo Date: Wed, 2 Oct 2019 10:14:23 +0100 Subject: [PATCH 2/2] Added doctstring to fixture --- pandas/tests/io/excel/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/io/excel/conftest.py b/pandas/tests/io/excel/conftest.py index 5ba0674af54fc..843b3c08421b3 100644 --- a/pandas/tests/io/excel/conftest.py +++ b/pandas/tests/io/excel/conftest.py @@ -8,7 +8,7 @@ @pytest.fixture def frame(float_frame): """ - Returns the first ten items in Fixture "float_frame" + Returns the first ten items in fixture "float_frame". """ return float_frame[:10]