Skip to content

Commit 22c90c7

Browse files
committed
Uncomment CrsUDT Spec
1 parent 69441ef commit 22c90c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/test/scala/org/locationtech/rasterframes/CrsSpec.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ class CrsSpec extends TestEnvironment with TestData with Inspectors {
3232
import spark.implicits._
3333

3434
describe("CrsUDT") {
35-
ignore("should extract from CRS") {
35+
it("should extract from CRS") {
3636
val df = List(Option(LatLng: CRS)).toDF("crs")
3737
val crs_df = df.select(rf_crs($"crs"))
3838
crs_df.take(1).head shouldBe LatLng
3939
}
4040

41-
ignore("should extract from raster") {
41+
it("should extract from raster") {
4242
val df = List(Option(one)).toDF("raster")
4343
val crs_df = df.select(rf_crs($"raster"))
4444
crs_df.take(1).head shouldBe one.crs
4545
}
4646

47-
ignore("should extract from rastersource") {
47+
it("should extract from rastersource") {
4848
val src = RFRasterSource(remoteMODIS)
4949
val df = Seq(src).toDF("src")
5050
val crs_df = df.select(rf_crs($"src"))

0 commit comments

Comments
 (0)