ignite-4154
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/ef9c5e70 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ef9c5e70 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ef9c5e70 Branch: refs/heads/ignite-4154 Commit: ef9c5e7052fb97d426e1af19ca10e8d0b9f0f5ae Parents: c861776 Author: sboikov <[email protected]> Authored: Fri Nov 11 12:27:04 2016 +0300 Committer: sboikov <[email protected]> Committed: Fri Nov 11 12:27:04 2016 +0300 ---------------------------------------------------------------------- .../processors/query/h2/sql/GridQueryParsingTest.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/ef9c5e70/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/GridQueryParsingTest.java ---------------------------------------------------------------------- diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/GridQueryParsingTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/GridQueryParsingTest.java index d559d2e..070acb1 100644 --- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/GridQueryParsingTest.java +++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/GridQueryParsingTest.java @@ -87,13 +87,22 @@ public class GridQueryParsingTest extends GridCommonAbstractTest { return c; } - /** */ + /** {@inheritDoc} */ @Override protected void beforeTestsStarted() throws Exception { super.beforeTestsStarted(); ignite = startGrid(); } + /** {@inheritDoc} */ + @Override protected void afterTestsStopped() throws Exception { + stopAllGrids(); + + ignite = null; + + super.afterTestsStopped(); + } + /** * @throws Exception If failed. */
