Skip to content

Commit

Permalink
Fix label tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dglmoore committed Jun 23, 2023
1 parent 03d2c49 commit 89c11eb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class LabelTest extends Specification {
def label = Label.parseFile path

expect:
label.inferLabelType() == Label.LabelType.RDA
label.inferLabelType() == LabelType.RDA

where:
path << filesInDirectory("pds3/rda")
Expand All @@ -165,7 +165,7 @@ class LabelTest extends Specification {
def label = Label.parseFile path

expect:
label.inferLabelType() == Label.LabelType.RE1
label.inferLabelType() == LabelType.RE1

where:
path << filesInDirectory("pds3/re1")
Expand All @@ -176,7 +176,7 @@ class LabelTest extends Specification {
def label = Label.parseFile path

expect:
label.inferLabelType() == Label.LabelType.MIN
label.inferLabelType() == LabelType.MIN

where:
path << filesInDirectory("pds3/min")
Expand Down

0 comments on commit 89c11eb

Please sign in to comment.