Skip to content

Commit

Permalink
chore: Fix functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rsenden committed Jan 25, 2024
1 parent f7b3ace commit 225e763
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class ToolBugTrackerUtilitySpec extends FcliBaseSpec {
}

def "uninstall"() {
def args = "tool bugtracker-utility uninstall -y -v=${version}"
def args = "tool bugtracker-utility uninstall -y --progress=none -v=${version}"
when:
def result = Fcli.run(args)
then:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ToolDebrickedSpec extends FcliBaseSpec {
}

def "uninstall"() {
def args = "tool debricked-cli uninstall -y -v=${version}"
def args = "tool debricked-cli uninstall -y --progress=none -v=${version}"
when:
def result = Fcli.run(args)
then:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ToolFcliSpec extends FcliBaseSpec {
}

def "uninstall"() {
def args = "tool fcli uninstall -y -v=${version}"
def args = "tool fcli uninstall -y --progress=none -v=${version}"
when:
def result = Fcli.run(args)
then:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ToolFoDUploaderSpec extends FcliBaseSpec {
}

def "uninstall"() {
def args = "tool fod-uploader uninstall -y -v=${version}"
def args = "tool fod-uploader uninstall -y --progress=none -v=${version}"
when:
def result = Fcli.run(args)
then:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ToolScClientSpec extends FcliBaseSpec {
}

def "uninstall"() {
def args = "tool sc-client uninstall -y -v=${version}"
def args = "tool sc-client uninstall -y --progress=none -v=${version}"
when:
def result = Fcli.run(args)
then:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ToolVulnExporterSpec extends FcliBaseSpec {
}

def "uninstall"() {
def args = "tool vuln-exporter uninstall -y -v=${version}"
def args = "tool vuln-exporter uninstall -y --progress=none -v=${version}"
when:
def result = Fcli.run(args)
then:
Expand Down

0 comments on commit 225e763

Please sign in to comment.