Skip to content
This repository was archived by the owner on Dec 21, 2022. It is now read-only.

Commit 3b8b64e

Browse files
Diego Antonellidiego-antonelli
authored andcommitted
fix(color-picker-web): fixing tests
1 parent c62bdfd commit 3b8b64e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages-web/color-picker/src/components/Label.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const Label: SFC<LabelProps> = ({ children, className, label, style, weig
2222
"form-group",
2323
className,
2424
{ "has-error": hasError },
25-
orientation === "vertical" ? "no-columns " : ""
25+
orientation === "vertical" ? "no-columns" : ""
2626
),
2727
style
2828
},

packages-web/color-picker/src/components/__tests__/Label.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe("Label", () => {
2727
expect(labelComponent.getElement()).toEqual(
2828
createElement(
2929
"div",
30-
{ className: "form-group" },
30+
{ className: "form-group no-columns" },
3131
createElement("label", { className: "control-label" }, label),
3232
createElement("div", { className: "" })
3333
)

0 commit comments

Comments
 (0)