Skip to content

Commit

Permalink
Unignored some tests in ImportToolTest
Browse files Browse the repository at this point in the history
  • Loading branch information
tinwelint committed Jan 10, 2018
1 parent 6933dd3 commit 637a486
Showing 1 changed file with 2 additions and 9 deletions.
Expand Up @@ -20,7 +20,6 @@
package org.neo4j.tooling; package org.neo4j.tooling;


import org.apache.commons.lang3.mutable.MutableInt; import org.apache.commons.lang3.mutable.MutableInt;
import org.junit.Ignore;
import org.junit.Rule; import org.junit.Rule;
import org.junit.Test; import org.junit.Test;


Expand Down Expand Up @@ -1318,7 +1317,6 @@ private void shouldPrintReferenceLinkAsPartOfErrorMessage( List<String> nodeIds,
} }
} }


@Ignore
@Test @Test
public void shouldAllowMultilineFieldsWhenEnabled() throws Exception public void shouldAllowMultilineFieldsWhenEnabled() throws Exception
{ {
Expand Down Expand Up @@ -1606,9 +1604,8 @@ public void shouldBeEquivalentToUseRawAsciiOrCharacterAsQuoteConfiguration1() th
} }
} }


@Ignore
@Test @Test
public void shouldFailAndReportStartingLineForUnbalancedQuoteWithMultilinesEnabled() throws Exception public void shouldFailOnUnbalancedQuoteWithMultilinesEnabled() throws Exception
{ {
// GIVEN // GIVEN
int unbalancedStartLine = 10; int unbalancedStartLine = 10;
Expand All @@ -1624,11 +1621,7 @@ public void shouldFailAndReportStartingLineForUnbalancedQuoteWithMultilinesEnabl
fail( "Should have failed" ); fail( "Should have failed" );
} }
catch ( InputException e ) catch ( InputException e )
{ { // THEN OK
// THEN
assertThat( e.getMessage(), containsString( String.format( "started on line %d", unbalancedStartLine ) ) );
// make sure end was reached
assertThat( e.getMessage(), containsString( String.format( "line:%d", 2 * unbalancedStartLine + 1 ) ) );
} }
} }


Expand Down

0 comments on commit 637a486

Please sign in to comment.