Skip to content

Commit f6bbd84

Browse files
committed
Remove empty primary constructors
1 parent d349d37 commit f6bbd84

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

aztec/src/test/kotlin/org/wordpress/aztec/AztecCommentTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import org.wordpress.aztec.spans.AztecCommentSpan
2121
*/
2222
@RunWith(RobolectricTestRunner::class)
2323
@Config(constants = BuildConfig::class, sdk = intArrayOf(23))
24-
class AztecCommentTest() : AndroidTestCase() {
24+
class AztecCommentTest : AndroidTestCase() {
2525
lateinit var editText: AztecText
2626

2727
private val HTML_COMMENT_MORE = "<!--more-->"

aztec/src/test/kotlin/org/wordpress/aztec/HeadingTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import org.wordpress.aztec.toolbar.AztecToolbar
2121
*/
2222
@RunWith(RobolectricTestRunner::class)
2323
@Config(constants = BuildConfig::class, sdk = intArrayOf(23))
24-
class HeadingTest() {
24+
class HeadingTest {
2525

2626
lateinit var editText: AztecText
2727
lateinit var sourceText: SourceViewEditText

aztec/src/test/kotlin/org/wordpress/aztec/LinkTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import org.robolectric.annotation.Config
1111

1212
@RunWith(RobolectricTestRunner::class)
1313
@Config(constants = BuildConfig::class, sdk = intArrayOf(23))
14-
class LinkTest() {
14+
class LinkTest {
1515

1616
lateinit var editText: AztecText
1717

aztec/src/test/kotlin/org/wordpress/aztec/QuoteTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import org.wordpress.aztec.watchers.EndOfBufferMarkerAdder
1818
*/
1919
@RunWith(RobolectricTestRunner::class)
2020
@Config(constants = BuildConfig::class, sdk = intArrayOf(23))
21-
class QuoteTest() {
21+
class QuoteTest {
2222

2323
val formattingType = TextFormat.FORMAT_QUOTE
2424
val quoteTag = "blockquote"

0 commit comments

Comments
 (0)