Fix grammatical error in comments
This commit is contained in:
parent
a404efab65
commit
2737496b3a
|
@ -284,19 +284,19 @@ prop_sourcedFileUsesOriginalShellExtension = result == [2079]
|
||||||
}
|
}
|
||||||
|
|
||||||
prop_optionIncludes1 =
|
prop_optionIncludes1 =
|
||||||
-- expect 2086, but not included, so not reported
|
-- expect 2086, but not included, so nothing reported
|
||||||
null $ checkOptionIncludes (Just [2080]) "#!/bin/sh\n var='a b'\n echo $var"
|
null $ checkOptionIncludes (Just [2080]) "#!/bin/sh\n var='a b'\n echo $var"
|
||||||
|
|
||||||
prop_optionIncludes2 =
|
prop_optionIncludes2 =
|
||||||
-- expect 2086, included, so its reported
|
-- expect 2086, included, so it is reported
|
||||||
[2086] == checkOptionIncludes (Just [2086]) "#!/bin/sh\n var='a b'\n echo $var"
|
[2086] == checkOptionIncludes (Just [2086]) "#!/bin/sh\n var='a b'\n echo $var"
|
||||||
|
|
||||||
prop_optionIncludes3 =
|
prop_optionIncludes3 =
|
||||||
-- expect 2086, no inclusions provided, so its reported
|
-- expect 2086, no inclusions provided, so it is reported
|
||||||
[2086] == checkOptionIncludes Nothing "#!/bin/sh\n var='a b'\n echo $var"
|
[2086] == checkOptionIncludes Nothing "#!/bin/sh\n var='a b'\n echo $var"
|
||||||
|
|
||||||
prop_optionIncludes4 =
|
prop_optionIncludes4 =
|
||||||
-- expect 2086 & 2154, only 2154 included, so only its reported
|
-- expect 2086 & 2154, only 2154 included, so only that's reported
|
||||||
[2154] == checkOptionIncludes (Just [2154]) "#!/bin/sh\n var='a b'\n echo $var\n echo $bar"
|
[2154] == checkOptionIncludes (Just [2154]) "#!/bin/sh\n var='a b'\n echo $var\n echo $bar"
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
|
Loading…
Reference in New Issue