Skip to content

Commit

Permalink
Remove some useless quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Oct 24, 2023
1 parent f98a210 commit ef46243
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/k4FWCoreTest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,12 @@ add_test_with_env(Testk4runHelpOnly options/TestArgs.py --help PROPERTIES PASS_R


add_test_with_env(ExampleFunctionalProducer options/runExampleFunctionalProducer.py)
add_test_with_env(ExampleFunctionalConsumer options/runExampleFunctionalConsumer.py PROPERTIES DEPENDS "ExampleFunctionalProducer")
add_test_with_env(ExampleFunctionalConsumer options/runExampleFunctionalConsumer.py PROPERTIES DEPENDS ExampleFunctionalProducer)
# A dependency on the ExampleFunctionalConsumer is added to make sure they don't
# run at the same time
add_test_with_env(ExampleFunctionalTransformer options/runExampleFunctionalTransformer.py PROPERTIES DEPENDS ExampleFunctionalProducer)
add_test_with_env(ExampleFunctionalProducerMultiple options/runExampleFunctionalProducerMultiple.py)
add_test_with_env(ExampleFunctionalConsumerMultiple options/runExampleFunctionalConsumerMultiple.py PROPERTIES DEPENDS "ExampleFunctionalProducerMultiple")
add_test_with_env(ExampleFunctionalConsumerMultiple options/runExampleFunctionalConsumerMultiple.py PROPERTIES DEPENDS ExampleFunctionalProducerMultiple)
add_test_with_env(ExampleFunctionalTransformerMultiple options/runExampleFunctionalTransformerMultiple.py PROPERTIES DEPENDS ExampleFunctionalProducerMultiple)
add_test_with_env(FunctionalChain options/runFunctionalChain.py)
add_test_with_env(FunctionalMix options/runFunctionalMix.py PROPERTIES DEPENDS "ExampleFunctionalProducerMultiple")
add_test_with_env(FunctionalMix options/runFunctionalMix.py PROPERTIES DEPENDS ExampleFunctionalProducerMultiple)

0 comments on commit ef46243

Please sign in to comment.