Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
Signed-off-by: munishchouhan <hrma017@gmail.com>
  • Loading branch information
munishchouhan committed Mar 13, 2024
1 parent 6294df4 commit 04fac12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/test/groovy/io/seqera/wave/cli/AppTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ class AppTest extends Specification {
def "test valid labels"(){
given:
def app = new App()
String[] args = ["--label", "key1=value1","--label", "key 2=value2"]
String[] args = ["--label", "key1=value1","--label", "key2=value2"]

when:
new CommandLine(app).parseArgs(args)
Expand All @@ -287,7 +287,7 @@ class AppTest extends Specification {
then:
request.labels == [
"key1":"value1",
"key 2":"value2"
"key2":"value2"
]
}
}

0 comments on commit 04fac12

Please sign in to comment.