Merge pull request #5161 from sad2project/patch-2

Fix typo
This commit is contained in:
Anton-4 2023-03-24 19:24:23 +01:00 committed by GitHub
commit 41d7ade5a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 2 deletions

1
Cargo.lock generated
View File

@ -3502,6 +3502,7 @@ dependencies = [
"roc_reporting",
"roc_target",
"serde",
"serial_test",
"target-lexicon",
"tempfile",
]

View File

@ -36,3 +36,4 @@ tempfile.workspace = true
[dev-dependencies]
indoc.workspace = true
libc.workspace = true
serial_test.workspace = true

View File

@ -1359,6 +1359,7 @@ mod test {
use crate::preprocessed_host_filename;
use indoc::indoc;
use serial_test::serial;
use target_lexicon::Triple;
use super::*;
@ -1834,12 +1835,14 @@ mod test {
}
#[cfg(windows)]
#[serial(zig_build)]
#[test]
fn basics_windows() {
assert_eq!("Hello, 234567 32 1 3!\n", windows_test(test_basics))
}
#[test]
#[serial(zig_build)]
#[ignore]
fn basics_wine() {
assert_eq!("Hello, 234567 32 1 3!\n", wine_test(test_basics))
@ -1876,13 +1879,15 @@ mod test {
}
#[cfg(windows)]
#[serial(zig_build)]
#[test]
fn app_internal_relocations_windows() {
assert_eq!("Hello foo\n", windows_test(test_internal_relocations))
}
#[ignore]
#[test]
#[serial(zig_build)]
#[ignore]
fn app_internal_relocations_wine() {
assert_eq!("Hello foo\n", wine_test(test_internal_relocations))
}

View File

@ -20,5 +20,5 @@ Should the editor organize all UI into a tree for easy altering/communication wi
- It requires a lot less work to communicate with the compiler because we have a valid AST at all time.
- Similarly, we never have to deal with partial expressions that have not been fully typed out yet.
- The user never has to fiddle with formatting.
- It allows plugins to work with typed values instead of: a string that is connected with a typed value and where any changes to the typed value would have to produce a string that is sensibly formatted similar the formatting of the original string.
- It allows plugins to work with typed values instead of a string that is connected with a typed value and where any changes to the typed value would have to produce a string that is sensibly formatted similar the formatting of the original string.