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

Commit

Permalink
fix(color-picker-web): fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Antonelli authored and diego-antonelli committed Aug 22, 2019
1 parent c62bdfd commit 3b8b64e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages-web/color-picker/src/components/Label.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const Label: SFC<LabelProps> = ({ children, className, label, style, weig
"form-group",
className,
{ "has-error": hasError },
orientation === "vertical" ? "no-columns " : ""
orientation === "vertical" ? "no-columns" : ""
),
style
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe("Label", () => {
expect(labelComponent.getElement()).toEqual(
createElement(
"div",
{ className: "form-group" },
{ className: "form-group no-columns" },
createElement("label", { className: "control-label" }, label),
createElement("div", { className: "" })
)
Expand Down

0 comments on commit 3b8b64e

Please sign in to comment.