Skip to content

Commit

Permalink
Commit template substitution may not be available if building from ta…
Browse files Browse the repository at this point in the history
…rball.
  • Loading branch information
heuermh committed Jan 6, 2020
1 parent c99bfba commit 1006745
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class AboutSuite extends FunSuite {
test("template variables have been replaced") {
assert(about.artifactId !== "${project.artifactId}")
assert(about.buildTimestamp !== "${maven.build.timestamp}")
assert(about.commit !== "${git.commit.id}")
assert(about.hadoopVersion !== "${hadoop.version}")
assert(about.scalaVersion !== "${scala.version}")
assert(about.sparkVersion !== "${spark.version}")
Expand All @@ -35,7 +34,6 @@ class AboutSuite extends FunSuite {
test("templated values are not empty") {
assert(about.artifactId.nonEmpty)
assert(about.buildTimestamp.nonEmpty)
assert(about.commit.nonEmpty)
assert(about.hadoopVersion.nonEmpty)
assert(about.scalaVersion.nonEmpty)
assert(about.sparkVersion.nonEmpty)
Expand Down

0 comments on commit 1006745

Please sign in to comment.