Skip to content

Commit

Permalink
Update Box.test.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanyoung committed Dec 28, 2023
1 parent 80b1219 commit 5a057fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Box/Box.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe('Box', () => {
});
});

test('childGap margin classes are applied for horizontal layout', () => {
test('childGap margin classes are applied for column layout', () => {
[...SPACING_OPTIONS].forEach((value, optionIndex) => {
const { container } = render(
<Box childGap={value} key={optionIndex}>
Expand All @@ -84,7 +84,7 @@ describe('Box', () => {
});
});

test('childGap margin classes are applied for vertical layout', () => {
test('childGap margin classes are applied for row layout', () => {
[...SPACING_OPTIONS].forEach((value, optionIndex) => {
const { container } = render(
<Box childGap={value} key={optionIndex} direction="row">
Expand Down

0 comments on commit 5a057fa

Please sign in to comment.