Tests: Add final missing static bwc index for 1.2.0

See #9297
This commit is contained in:
Ryan Ernst 2015-01-15 23:11:34 -08:00
parent 979f99af7f
commit 1ee6ff0ea5
2 changed files with 1 additions and 4 deletions

View File

@ -82,7 +82,7 @@ public class OldIndexBackwardsCompatibilityTests extends StaticIndexBackwardComp
"index-1.1.0.zip",
"index-1.1.1.zip",
"index-1.1.2.zip",
/* skipping 1.2.0...there was a major bug with routing, and it is not even downloadable */
"index-1.2.0.zip",
"index-1.2.1.zip",
"index-1.2.2.zip",
"index-1.2.3.zip",
@ -108,9 +108,6 @@ public class OldIndexBackwardsCompatibilityTests extends StaticIndexBackwardComp
Version v = (Version)field.get(Version.class);
if (v.snapshot()) continue;
if (v.onOrBefore(Version.V_0_20_6)) continue;
// problematic indexes...see notes above
if (v.equals(Version.V_1_2_0)) continue;
expectedVersions.add("index-" + v.toString() + ".zip");
}