Skip to content

Commit 9d5d4fa

Browse files
committed
Add copyright headers and fix spelling error in StepsLogger
Added missing copyright headers to multiple test files for legal compliance. Also corrected a spelling error in the variable name "initializaed" to "initialized" in the StepsLogger file.
1 parent fbee25f commit 9d5d4fa

File tree

8 files changed

+38
-3
lines changed

8 files changed

+38
-3
lines changed

src/test/kotlin/com/magento/idea/magento2plugin/pages/ContextMenuFixture.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
5+
16
package com.magento.idea.magento2plugin.pages
27

38
import com.intellij.remoterobot.RemoteRobot

src/test/kotlin/com/magento/idea/magento2plugin/pages/CreateAPluginDialogFixture.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15

26
package com.magento.idea.magento2plugin.pages
37

src/test/kotlin/com/magento/idea/magento2plugin/pages/DialogFixture.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15

26
package com.magento.idea.magento2plugin.pages
37

src/test/kotlin/com/magento/idea/magento2plugin/pages/FilteredComboBoxFixture.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
5+
16
package com.magento.idea.magento2plugin.pages
27

38
import com.intellij.remoterobot.RemoteRobot

src/test/kotlin/com/magento/idea/magento2plugin/pages/IdeaFrame.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15

26
package com.magento.idea.magento2plugin.pages
37

src/test/kotlin/com/magento/idea/magento2plugin/pages/WelcomeFrame.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15

26
package com.magento.idea.magento2plugin.pages
37

src/test/kotlin/com/magento/idea/magento2plugin/utils/RemoteRobotExtension.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
5+
16
package com.magento.idea.magento2plugin.utils
27

38
import com.intellij.remoterobot.RemoteRobot
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1+
/*
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15

26
package com.magento.idea.magento2plugin.utils
37

48
import com.intellij.remoterobot.stepsProcessing.StepLogger
59
import com.intellij.remoterobot.stepsProcessing.StepWorker
610

711
object StepsLogger {
8-
private var initializaed = false
12+
private var initialized = false
913
@JvmStatic
1014
fun init() {
11-
if (initializaed.not()) {
15+
if (initialized.not()) {
1216
StepWorker.registerProcessor(StepLogger())
13-
initializaed = true
17+
initialized = true
1418
}
1519
}
1620
}

0 commit comments

Comments
 (0)