Skip to content

Commit 8fb894f

Browse files
author
Vitaliy Boyko
committed
3.0.0 fixed tests, actualized dependencies
1 parent 4a6818c commit 8fb894f

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

77
## 3.0.0
88

9-
## 2.1.0
10-
119
### Added
1210

1311
- Description for "Magento Routes XML" code template in [#349](https://github.com/magento/magento2-phpstorm-plugin/pull/349)

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ apply plugin: 'java'
2222
apply plugin: 'groovy'
2323
apply plugin: 'org.jetbrains.changelog'
2424

25-
def phpPluginVersion = System.getProperty("phpPluginVersion", "202.8194.11")
26-
def ideaVersion = System.getProperty("ideaVersion", "2020.2.4")
25+
def phpPluginVersion = System.getProperty("phpPluginVersion", "203.5981.175")
26+
def ideaVersion = System.getProperty("ideaVersion", "2020.3")
2727
def javaVersion = 1.8
2828

2929
sourceCompatibility = javaVersion

resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</change-notes>
2525

2626
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
27-
<idea-version since-build="202.8194.7"/>
27+
<idea-version since-build="203.5981.155"/>
2828

2929
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
3030
on how to target different products -->

tests/com/magento/idea/magento2plugin/linemarker/LinemarkerFixtureTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected void assertHasLinemarkerWithTooltipAndIcon(final String tooltip, final
4040
continue;
4141
}
4242
if (lineMarkerTooltip.equals(tooltip)
43-
&& lineMarkerIcon.toString().equals(icon)) {
43+
&& lineMarkerIcon.toString().endsWith(icon)) {
4444
return;
4545
}
4646
}

0 commit comments

Comments
 (0)