diff options
author | cui fliter <imcusg@gmail.com> | 2024-03-04 22:28:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 14:28:57 +0000 |
commit | d4b3b39cc021bfac76e023eedd217fe0c2df9978 (patch) | |
tree | 6d1e72ffc8a0672dbf0e6c8b239930de2eaac8d6 /tests/integration/bundle_tests.rs | |
parent | 11db68ce96dfe561da6d7f4938e412635dc688d7 (diff) |
chore: fix typos (#22677)
Diffstat (limited to 'tests/integration/bundle_tests.rs')
-rw-r--r-- | tests/integration/bundle_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/bundle_tests.rs b/tests/integration/bundle_tests.rs index 836a692b6..0738a0cfe 100644 --- a/tests/integration/bundle_tests.rs +++ b/tests/integration/bundle_tests.rs @@ -118,7 +118,7 @@ fn bundle_circular() { .arg(&bundle_path) .output() .unwrap(); - // check the output of the the bundle program. + // check the output of the bundle program. assert_ends_with!( std::str::from_utf8(&output.stdout).unwrap().trim(), "f2\nf1", @@ -150,7 +150,7 @@ fn bundle_single_module() { .arg(&bundle) .output() .unwrap(); - // check the output of the the bundle program. + // check the output of the bundle program. assert_ends_with!( std::str::from_utf8(&output.stdout).unwrap().trim(), "Hello world!", |