Skip to content

Commit 3574069

Browse files
committed
Merge pull request #7260 from sinhrks/boxdict
TST/BUG: Fix grouped_box_return_type
2 parents 2801bdc + 42be204 commit 3574069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_graphics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2272,7 +2272,7 @@ def test_grouped_box_return_type(self):
22722272
columns2 = 'X B C D A G Y N Q O'.split()
22732273
df2 = DataFrame(random.randn(50, 10), columns=columns2)
22742274
categories2 = 'A B C D E F G H I J'.split()
2275-
df2['category'] = tm.choice(categories2, size=50)
2275+
df2['category'] = categories2 * 5
22762276

22772277
types = {'dict': dict, 'axes': matplotlib.axes.Axes, 'both': tuple}
22782278
for t, klass in iteritems(types):

0 commit comments

Comments
 (0)