#930 - Refactor (renames etc) for SQL Server History support

This commit is contained in:
Rob Bygrave
2016-12-23 13:18:15 +13:00
parent e51eb00889
commit 3efcfec300
8 changed files with 16 additions and 52 deletions
@@ -1,7 +1,6 @@
package io.ebean.config.dbplatform.sqlserver;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
@@ -12,7 +11,7 @@ public class SqlServer2016PlatformTest {
@Test
public void testHistorySupport() {
SqlServer2016Platform platform = new SqlServer2016Platform();
assertTrue(platform.getHistorySupport() instanceof SqlServer2016HistorySupport);
SqlServerPlatform platform = new SqlServerPlatform();
assertTrue(platform.getHistorySupport() instanceof SqlServerHistorySupport);
}
}