Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
happytomatoe committed Sep 3, 2024
1 parent bfddcbb commit 7a53baf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.apache.spark.sql.Row
import com.github.mrpowers.spark.fast.tests.ufansi.FansiExtensions.StrOps
object DataframeUtil {

def showDataframeDiff(
private[mrpowers] def showDataframeDiff(
header: (String, String),
actual: Array[Row],
expected: Array[Row],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.mrpowers.spark.fast.tests.ufansi
object FansiExtensions {
implicit class StrOps(c: Seq[Str]) {
private[mrpowers] implicit class StrOps(c: Seq[Str]) {
def mkStr(start: Str, sep: Str, end: Str): Str =
start ++ c.reduce(_ ++ sep ++ _) ++ end
}
Expand Down

0 comments on commit 7a53baf

Please sign in to comment.