Polish contribution

Issue: SPR-14039 - Closes gh-998
This commit is contained in:
Stephane Nicoll
2016-03-16 16:59:30 +01:00
parent 1a302e1fac
commit f422e490b0
7 changed files with 76 additions and 66 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2015 the original author or authors.
* Copyright 2002-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -261,7 +261,7 @@ public class DefaultConversionServiceTests {
@Test
public void testEnumToInteger() {
assertEquals(0, conversionService.convert(Foo.BAR, Integer.class));
assertEquals(Integer.valueOf(0), conversionService.convert(Foo.BAR, Integer.class));
}
@Test