@@ -4,7 +4,7 @@ use std::process::Command;
44#[ test]
55fn test_provider_list_runs ( ) {
66 let output = Command :: new ( "cargo" )
7- . args ( & [ "run" , "--" , "provider" , "list" ] )
7+ . args ( [ "run" , "--" , "provider" , "list" ] )
88 . output ( )
99 . expect ( "Failed to execute command" ) ;
1010
@@ -19,7 +19,7 @@ fn test_provider_list_runs() {
1919#[ test]
2020fn test_version ( ) {
2121 let output = Command :: new ( "cargo" )
22- . args ( & [ "run" , "--" , "--version" ] )
22+ . args ( [ "run" , "--" , "--version" ] )
2323 . output ( )
2424 . expect ( "Failed to execute command" ) ;
2525
@@ -31,7 +31,7 @@ fn test_version() {
3131#[ test]
3232fn test_help ( ) {
3333 let output = Command :: new ( "cargo" )
34- . args ( & [ "run" , "--" , "--help" ] )
34+ . args ( [ "run" , "--" , "--help" ] )
3535 . output ( )
3636 . expect ( "Failed to execute command" ) ;
3737
@@ -43,7 +43,7 @@ fn test_help() {
4343#[ test]
4444fn test_provider_ls ( ) {
4545 let output = Command :: new ( "cargo" )
46- . args ( & [ "run" , "--" , "provider" , "ls" ] )
46+ . args ( [ "run" , "--" , "provider" , "ls" ] )
4747 . output ( )
4848 . expect ( "Failed to execute command" ) ;
4949
0 commit comments