diff --git a/spec/gcov/gcov_test_cases_spec.rb b/spec/gcov/gcov_test_cases_spec.rb index 9dc30bed..f5e58580 100644 --- a/spec/gcov/gcov_test_cases_spec.rb +++ b/spec/gcov/gcov_test_cases_spec.rb @@ -186,7 +186,7 @@ def can_create_html_report FileUtils.cp test_asset_path("test_example_file_success.c"), 'test/' output = `bundle exec ruby -S ceedling gcov:all` - expect(output).to match(/Creating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) + expect(output).to match(/Generating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) expect(File.exist?('build/artifacts/gcov/gcovr/GcovCoverageResults.html')).to eq true end end @@ -216,7 +216,7 @@ def can_create_gcov_html_report_from_crashing_test_runner_with_enabled_debug_and expect(output).to match(/IGNORED:\s+0/) expect(output).to match(/example_file.c \| Lines executed:50.00% of 4/) - expect(output).to match(/Creating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) + expect(output).to match(/Generating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) expect(output).to match(/Done/) expect(File.exist?('build/artifacts/gcov/gcovr/GcovCoverageResults.html')).to eq true end @@ -247,7 +247,7 @@ def can_create_gcov_html_report_from_crashing_test_runner_with_enabled_debug_and expect(output).to match(/IGNORED:\s+0/) expect(output).to match(/example_file.c \| Lines executed:0.00% of 4/) - expect(output).to match(/Creating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) + expect(output).to match(/Generating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) expect(output).to match(/Done/) expect(File.exist?('build/artifacts/gcov/gcovr/GcovCoverageResults.html')).to eq true end @@ -282,7 +282,7 @@ def can_create_gcov_html_report_from_test_runner_with_enabled_debug_and_cmd_args expect(output).to match(/IGNORED:\s+0/) expect(output).to match(/example_file.c \| Lines executed:100.00% of 4/) - expect(output).to match(/Creating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) + expect(output).to match(/Generating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) expect(output).to match(/Done/) expect(File.exist?('build/artifacts/gcov/gcovr/GcovCoverageResults.html')).to eq true end