Skip to content

Commit 44b0622

Browse files
committed
IGNITE-3077: Test fixed - Fixes apache#3556.
Signed-off-by: Nikolay Izhikov <[email protected]>
1 parent d64eecb commit 44b0622

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

modules/spark/src/test/scala/org/apache/ignite/spark/IgniteRDDSpec.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,6 @@ class IgniteRDDSpec extends FunSpec with Matchers with BeforeAndAfterAll with Be
248248
}
249249

250250
it("should successfully query complex object fields") {
251-
assert(false, "https://issues.apache.org/jira/browse/IGNITE-3077")
252-
253251
val sc = new SparkContext("local[*]", "test")
254252

255253
try {
@@ -260,7 +258,7 @@ class IgniteRDDSpec extends FunSpec with Matchers with BeforeAndAfterAll with Be
260258

261259
cache.savePairs(sc.parallelize(0 to 1000, 2).map(i (i:java.lang.Integer, new WithObjectField(i, new Entity(i, "", i)))))
262260

263-
val df = cache.sql("select i, ts from WithLocalDate where i = ?", 50)
261+
val df = cache.sql(s"select i, ts from $WITH_OBJECT_FIELD_CACHE_NAME where i = ?", 50)
264262

265263
df.printSchema()
266264

0 commit comments

Comments
 (0)