Skip to content

Commit

Permalink
test: update files to use proper lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
erichartline committed Jun 7, 2019
1 parent b722ffd commit ddafb1e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/components/editor/plugins/italic.test.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react"
import { shallow } from "enzyme"
import { ItalicButton, ItalicMark } from "./Italic"
import { ItalicButton, ItalicMark } from "./italic"
import ToolbarButton from "../toolbar/ToolbarButton"

describe("editor/plugins/Italic", () => {
describe("editor/plugins/italic", () => {
describe("ItalicMark", () => {
const wrapper = shallow(<ItalicMark>test</ItalicMark>)

Expand Down
4 changes: 2 additions & 2 deletions src/components/editor/plugins/strikethrough.test.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react"
import { shallow } from "enzyme"
import { StrikethroughButton, StrikethroughMark } from "./Strikethrough"
import { StrikethroughButton, StrikethroughMark } from "./strikethrough"
import ToolbarButton from "../toolbar/ToolbarButton"

describe("editor/plugins/Strikethrough", () => {
describe("editor/plugins/strikethrough", () => {
describe("StrikethroughMark", () => {
const wrapper = shallow(<StrikethroughMark>test</StrikethroughMark>)

Expand Down
4 changes: 2 additions & 2 deletions src/components/editor/plugins/subscript.test.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react"
import { shallow } from "enzyme"
import { SubscriptButton, SubscriptMark } from "./Subscript"
import { SubscriptButton, SubscriptMark } from "./subscript"
import ToolbarButton from "../toolbar/ToolbarButton"

describe("editor/plugins/Subscript", () => {
describe("editor/plugins/subscript", () => {
describe("SubscriptMark", () => {
const wrapper = shallow(<SubscriptMark>test</SubscriptMark>)

Expand Down
4 changes: 2 additions & 2 deletions src/components/editor/plugins/superscript.test.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react"
import { shallow } from "enzyme"
import { SuperscriptButton, SuperscriptMark } from "./Superscript"
import { SuperscriptButton, SuperscriptMark } from "./superscript"
import ToolbarButton from "../toolbar/ToolbarButton"

describe("editor/plugins/Superscript", () => {
describe("editor/plugins/superscript", () => {
describe("SuperscriptMark", () => {
const wrapper = shallow(<SuperscriptMark>test</SuperscriptMark>)

Expand Down
4 changes: 2 additions & 2 deletions src/components/editor/plugins/underline.test.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react"
import { shallow } from "enzyme"
import { UnderlineButton, UnderlineMark } from "./Underline"
import { UnderlineButton, UnderlineMark } from "./underline"
import ToolbarButton from "../toolbar/ToolbarButton"

describe("editor/plugins/Underline", () => {
describe("editor/plugins/underline", () => {
describe("UnderlineMark", () => {
const wrapper = shallow(<UnderlineMark>test</UnderlineMark>)

Expand Down

0 comments on commit ddafb1e

Please sign in to comment.