diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-05-05 11:29:30 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-18 20:29:40 -0700 |
commit | f14d814c2e509b3f3e3e725bb7f353512a6d14ff (patch) | |
tree | 6dcaadbae73f1819a1c4d766f14471f16b82d413 | |
parent | 27873e5c4720449b81f52d649d6d6ea9ef558deb (diff) | |
download | chef-f14d814c2e509b3f3e3e725bb7f353512a6d14ff.tar.gz |
Fix a typo.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
-rw-r--r-- | omnibus/omnibus-test.ps1 | 2 | ||||
-rw-r--r-- | omnibus/omnibus-test.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/omnibus/omnibus-test.ps1 b/omnibus/omnibus-test.ps1 index 45b6ba5d27..09a01c94bc 100644 --- a/omnibus/omnibus-test.ps1 +++ b/omnibus/omnibus-test.ps1 @@ -91,7 +91,7 @@ winrm quickconfig -quiet bundle If ($lastexitcode -ne 0) { Exit $lastexitcode } -# FIXME: we need to add back unit and integration tests here. we have no converage of those on e.g. AIX +# FIXME: we need to add back unit and integration tests here. we have no coverage of those on e.g. AIX # # chocolatey functional tests fail so disable that tag directly <-- and this is a bug that needs fixing. bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation --tag ~choco_installed spec/functional diff --git a/omnibus/omnibus-test.sh b/omnibus/omnibus-test.sh index 2a3b6e520e..d33ade448c 100644 --- a/omnibus/omnibus-test.sh +++ b/omnibus/omnibus-test.sh @@ -157,5 +157,5 @@ CHEF_LICENSE=accept-no-persist cd "$chef_gem" sudo -E bundle install -# FIXME: we need to add back unit and integration tests here. we have no converage of those on e.g. AIX +# FIXME: we need to add back unit and integration tests here. we have no coverage of those on e.g. AIX sudo -E bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec/functional |