Skip to content

Commit

Permalink
Fixed regex for pathref cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Nov 6, 2022
1 parent 81cd99f commit a605a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/local/src/MillBuildModuleTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class MillBuildModuleTests(fork: Boolean, clientServer: Boolean)

val ExtMod = MillBuildModule.millModuleSegments.render

def cleanRefs(string: String): String = string.replaceAll("[\"]ref:[0-9a-e]{8}:", "\"")
def cleanRefs(string: String): String = string.replaceAll("[\"]ref:[0-9a-f]{8}:", "\"")

def checkShow(target: String, expected: String) = {
val (true, out) = evalStdout("show", s"${ExtMod}/${target}")
Expand Down

0 comments on commit a605a47

Please sign in to comment.