Skip to content

Commit adc563c

Browse files
authored
Fix spelling: missmatch -> mismatch (#52)
1 parent ea66e8d commit adc563c

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

src/testdrive.F90

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -974,13 +974,13 @@ subroutine check_float_dp(error, actual, expected, message, more, thr, rel)
974974
else
975975
if (relative) then
976976
call test_failed(error, &
977-
"Floating point value missmatch", &
977+
"Floating point value mismatch", &
978978
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
979979
"(difference: "//to_string(int(diff*100))//"%)", &
980980
more)
981981
else
982982
call test_failed(error, &
983-
"Floating point value missmatch", &
983+
"Floating point value mismatch", &
984984
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
985985
"(difference: "//to_string(diff)//")", &
986986
more)
@@ -1069,13 +1069,13 @@ subroutine check_float_sp(error, actual, expected, message, more, thr, rel)
10691069
else
10701070
if (relative) then
10711071
call test_failed(error, &
1072-
"Floating point value missmatch", &
1072+
"Floating point value mismatch", &
10731073
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
10741074
"(difference: "//to_string(int(diff*100))//"%)", &
10751075
more)
10761076
else
10771077
call test_failed(error, &
1078-
"Floating point value missmatch", &
1078+
"Floating point value mismatch", &
10791079
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
10801080
"(difference: "//to_string(diff)//")", &
10811081
more)
@@ -1165,13 +1165,13 @@ subroutine check_float_xdp(error, actual, expected, message, more, thr, rel)
11651165
else
11661166
if (relative) then
11671167
call test_failed(error, &
1168-
"Floating point value missmatch", &
1168+
"Floating point value mismatch", &
11691169
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
11701170
"(difference: "//to_string(int(diff*100))//"%)", &
11711171
more)
11721172
else
11731173
call test_failed(error, &
1174-
"Floating point value missmatch", &
1174+
"Floating point value mismatch", &
11751175
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
11761176
"(difference: "//to_string(diff)//")", &
11771177
more)
@@ -1262,13 +1262,13 @@ subroutine check_float_qp(error, actual, expected, message, more, thr, rel)
12621262
else
12631263
if (relative) then
12641264
call test_failed(error, &
1265-
"Floating point value missmatch", &
1265+
"Floating point value mismatch", &
12661266
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
12671267
"(difference: "//to_string(int(diff*100))//"%)", &
12681268
more)
12691269
else
12701270
call test_failed(error, &
1271-
"Floating point value missmatch", &
1271+
"Floating point value mismatch", &
12721272
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
12731273
"(difference: "//to_string(diff)//")", &
12741274
more)
@@ -1358,13 +1358,13 @@ subroutine check_complex_dp(error, actual, expected, message, more, thr, rel)
13581358
else
13591359
if (relative) then
13601360
call test_failed(error, &
1361-
"Floating point value missmatch", &
1361+
"Floating point value mismatch", &
13621362
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
13631363
"(difference: "//to_string(int(diff*100))//"%)", &
13641364
more)
13651365
else
13661366
call test_failed(error, &
1367-
"Floating point value missmatch", &
1367+
"Floating point value mismatch", &
13681368
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
13691369
"(difference: "//to_string(diff)//")", &
13701370
more)
@@ -1453,13 +1453,13 @@ subroutine check_complex_sp(error, actual, expected, message, more, thr, rel)
14531453
else
14541454
if (relative) then
14551455
call test_failed(error, &
1456-
"Floating point value missmatch", &
1456+
"Floating point value mismatch", &
14571457
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
14581458
"(difference: "//to_string(int(diff*100))//"%)", &
14591459
more)
14601460
else
14611461
call test_failed(error, &
1462-
"Floating point value missmatch", &
1462+
"Floating point value mismatch", &
14631463
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
14641464
"(difference: "//to_string(diff)//")", &
14651465
more)
@@ -1549,13 +1549,13 @@ subroutine check_complex_xdp(error, actual, expected, message, more, thr, rel)
15491549
else
15501550
if (relative) then
15511551
call test_failed(error, &
1552-
"Floating point value missmatch", &
1552+
"Floating point value mismatch", &
15531553
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
15541554
"(difference: "//to_string(int(diff*100))//"%)", &
15551555
more)
15561556
else
15571557
call test_failed(error, &
1558-
"Floating point value missmatch", &
1558+
"Floating point value mismatch", &
15591559
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
15601560
"(difference: "//to_string(diff)//")", &
15611561
more)
@@ -1646,13 +1646,13 @@ subroutine check_complex_qp(error, actual, expected, message, more, thr, rel)
16461646
else
16471647
if (relative) then
16481648
call test_failed(error, &
1649-
"Floating point value missmatch", &
1649+
"Floating point value mismatch", &
16501650
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
16511651
"(difference: "//to_string(int(diff*100))//"%)", &
16521652
more)
16531653
else
16541654
call test_failed(error, &
1655-
"Floating point value missmatch", &
1655+
"Floating point value mismatch", &
16561656
"expected "//to_string(expected)//" but got "//to_string(actual)//" "//&
16571657
"(difference: "//to_string(diff)//")", &
16581658
more)
@@ -1711,7 +1711,7 @@ subroutine check_int_i1(error, actual, expected, message, more)
17111711
call test_failed(error, message, more)
17121712
else
17131713
call test_failed(error, &
1714-
"Integer value missmatch", &
1714+
"Integer value mismatch", &
17151715
"expected "//to_string(expected)//" but got "//to_string(actual), &
17161716
more)
17171717
end if
@@ -1742,7 +1742,7 @@ subroutine check_int_i2(error, actual, expected, message, more)
17421742
call test_failed(error, message, more)
17431743
else
17441744
call test_failed(error, &
1745-
"Integer value missmatch", &
1745+
"Integer value mismatch", &
17461746
"expected "//to_string(expected)//" but got "//to_string(actual), &
17471747
more)
17481748
end if
@@ -1773,7 +1773,7 @@ subroutine check_int_i4(error, actual, expected, message, more)
17731773
call test_failed(error, message, more)
17741774
else
17751775
call test_failed(error, &
1776-
"Integer value missmatch", &
1776+
"Integer value mismatch", &
17771777
"expected "//to_string(expected)//" but got "//to_string(actual), &
17781778
more)
17791779
end if
@@ -1804,7 +1804,7 @@ subroutine check_int_i8(error, actual, expected, message, more)
18041804
call test_failed(error, message, more)
18051805
else
18061806
call test_failed(error, &
1807-
"Integer value missmatch", &
1807+
"Integer value mismatch", &
18081808
"expected "//to_string(expected)//" but got "//to_string(actual), &
18091809
more)
18101810
end if
@@ -1835,7 +1835,7 @@ subroutine check_bool(error, actual, expected, message, more)
18351835
call test_failed(error, message, more)
18361836
else
18371837
call test_failed(error, &
1838-
"Logical value missmatch", &
1838+
"Logical value mismatch", &
18391839
"expected "//merge("T", "F", expected)//" but got "//merge("T", "F", actual), &
18401840
more)
18411841
end if
@@ -1866,7 +1866,7 @@ subroutine check_string(error, actual, expected, message, more)
18661866
call test_failed(error, message, more)
18671867
else
18681868
call test_failed(error, &
1869-
"Character value missmatch", &
1869+
"Character value mismatch", &
18701870
"expected '"//expected//"' but got '"//actual//"'", &
18711871
more)
18721872
end if

0 commit comments

Comments
 (0)