Skip to content

Commit

Permalink
Updated Errorprone to 2.0.11 (#1636)
Browse files Browse the repository at this point in the history
* Updated Errorprone to 2.0.11

* Corrected test
  • Loading branch information
oscargus authored Jul 28, 2016
1 parent 20e4c82 commit 296325c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ plugins {
id 'me.champeau.gradle.jmh' version '0.3.0'
}

configurations.errorprone {
// 2.0.10 does not work on Windows while 2.0.9 does
// See https://github.com/google/error-prone/issues/432
resolutionStrategy.force 'com.google.errorprone:error_prone_core:2.0.9'
}

apply plugin: "java"
apply plugin: "application"
apply plugin: "project-report"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void testCompareToGreater() {

@Test
public void testCompareToEven() {
assertEquals(0, importer.compareTo(importer));
assertEquals(0, importer.compareTo(new CustomImporter(new CopacImporter())));
}

@Test
Expand Down

0 comments on commit 296325c

Please sign in to comment.