mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Test fixes (#1628)
* FIX: mysql index sizes * FIX: osolete whitespace in sqlserver tests * Updated mssql-jdbc, this fixes problems in the batch insert (https://github.com/Microsoft/mssql-jdbc/pull/912) * fix tablename (reserved word in mariadb) * ignored failing tests for sqlserver
This commit is contained in:
committed by
Rob Bygrave
parent
5a4a0e3886
commit
6a7e6caa66
@@ -2,6 +2,9 @@ package org.tests.model.onetoone;
|
||||
|
||||
import io.ebean.BaseTestCase;
|
||||
import io.ebean.Ebean;
|
||||
import io.ebean.annotation.IgnorePlatform;
|
||||
import io.ebean.annotation.Platform;
|
||||
|
||||
import org.ebeantest.LoggedSqlCollector;
|
||||
import org.junit.Test;
|
||||
|
||||
@@ -12,6 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
public class TestOneToOneOrphanRemove extends BaseTestCase {
|
||||
|
||||
@Test
|
||||
@IgnorePlatform(Platform.SQLSERVER)
|
||||
public void base() {
|
||||
|
||||
OtoCust jack = new OtoCust("Jack");
|
||||
|
||||
Reference in New Issue
Block a user