Skip to content

Commit 18beaf2

Browse files
author
Chris Turner
committed
tests/test_relation.py: adjust pd.DataFrame comments to doctsrings
1 parent e88838a commit 18beaf2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/test_relation.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def test_insert_select(self):
104104
assert_equal(len(self.subject), 2*original_length)
105105

106106
def test_insert_pandas_roundtrip(self):
107-
# ensure fetched frames can be inserted
107+
''' ensure fetched frames can be inserted '''
108108
schema.TTest2.delete()
109109
n = len(schema.TTest())
110110
assert_true(n > 0)
@@ -115,8 +115,10 @@ def test_insert_pandas_roundtrip(self):
115115
assert_equal(len(schema.TTest2()), n)
116116

117117
def test_insert_pandas_userframe(self):
118-
# ensure simple user-created frames (1 field, non-custom index)
119-
# can be inserted without extra index adjustment
118+
'''
119+
ensure simple user-created frames (1 field, non-custom index)
120+
can be inserted without extra index adjustment
121+
'''
120122
schema.TTest2.delete()
121123
n = len(schema.TTest())
122124
assert_true(n > 0)

0 commit comments

Comments
 (0)