Skip to content

Commit 1bc6ab1

Browse files
committed
@ in tests
1 parent 1af8b65 commit 1bc6ab1

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

tests/attributes.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,11 +320,10 @@ fn env_attribute_single() {
320320
"
321321
[env('MY_VAR', 'my_value')]
322322
foo:
323-
echo $MY_VAR
323+
@echo $MY_VAR
324324
",
325325
)
326326
.stdout("my_value\n")
327-
.stderr("echo $MY_VAR\n")
328327
.run();
329328
}
330329

@@ -336,11 +335,10 @@ fn env_attribute_multiple() {
336335
[env('VAR1', 'value1')]
337336
[env('VAR2', 'value 2')]
338337
foo:
339-
echo $VAR1 $VAR2
338+
@echo $VAR1 $VAR2
340339
",
341340
)
342341
.stdout("value1 value 2\n")
343-
.stderr("echo $VAR1 $VAR2\n")
344342
.run();
345343
}
346344

0 commit comments

Comments
 (0)