Skip to content

Commit

Permalink
update expected test results after fixing usage of 'of'
Browse files Browse the repository at this point in the history
  • Loading branch information
NSoiffer committed Jan 15, 2025
1 parent ac6eeec commit 8f168dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Languages/en/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,15 +344,15 @@ fn mn_with_block_and_decimal_separators() {
#[test]
fn divergence() {
let expr = "<math><mo>&#x2207;</mo><mo>&#xB7;</mo><mi mathvariant='normal'>F</mi></math>"; // may want to change this for another language
test_prefs("en", "SimpleSpeak", vec![("Verbosity", "Terse")], expr, "dihv of cap f");
test_prefs("en", "SimpleSpeak", vec![("Verbosity", "Terse")], expr, "dihv cap f");
test_prefs("en", "SimpleSpeak", vec![("Verbosity", "Verbose")], expr, "divergence of cap f");
}

#[test]
fn curl() {
let expr = "<math><mo>&#x2207;</mo><mo>&#xD7;</mo><mi mathvariant='normal'>F</mi></math>";
// may want to change this for another language
test_prefs("en", "SimpleSpeak", vec![("Verbosity", "Terse")], expr, "curl of cap f");
test_prefs("en", "SimpleSpeak", vec![("Verbosity", "Terse")], expr, "curl cap f");
test_prefs("en", "SimpleSpeak", vec![("Verbosity", "Verbose")], expr, "curl of cap f");
}

Expand Down

0 comments on commit 8f168dc

Please sign in to comment.