We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abb8f4e commit 66e135aCopy full SHA for 66e135a
core/src/test/scala/org/locationtech/rasterframes/ExtensionMethodSpec.scala
@@ -113,11 +113,13 @@ class ExtensionMethodSpec extends TestEnvironment with TestData with SubdivideSu
113
}
114
115
it("should render Markdown") {
116
+ import org.apache.spark.sql.functions.lit
117
+
118
val md = rf.toMarkdown()
119
md.count(_ == '|') shouldBe >=(3 * 5)
120
md.count(_ == '\n') should be >= 6
121
- val md2 = rf.toMarkdown(truncate=true)
122
+ val md2 = rf.withColumn("long_string", lit("p" * 42)).toMarkdown(truncate=true)
123
md2 should include ("...")
124
125
0 commit comments