mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Use the right wasm feature flags
This commit is contained in:
parent
81254ecb77
commit
367d4fbb71
1 changed files with 2 additions and 2 deletions
|
@ -561,7 +561,7 @@ fn four_element_record() {
|
|||
);
|
||||
}
|
||||
|
||||
#[cfg(not(wasm))]
|
||||
#[cfg(not(feature = "wasm"))]
|
||||
#[test]
|
||||
fn multiline_string_non_wasm() {
|
||||
// If a string contains newlines, format it as a multiline string in the output.
|
||||
|
@ -588,7 +588,7 @@ fn multiline_string_non_wasm() {
|
|||
assert!(out.status.success());
|
||||
}
|
||||
|
||||
#[cfg(wasm)]
|
||||
#[cfg(feature = "wasm")]
|
||||
#[test]
|
||||
fn multiline_string_wasm() {
|
||||
// If a string contains newlines, format it as a multiline string in the output
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue