File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/test/scala/org/locationtech/rasterframes Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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" ))
You can’t perform that action at this time.
0 commit comments