Skip to content

Commit

Permalink
fix specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jammjammjamm committed Dec 17, 2024
1 parent 40a0d2b commit d5137c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/inferno/cli/new_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
expect(File).to exist('test-fhir-app/lib/test_fhir_app.rb')

if cli_args.count('--author') == 1
expect(File.read('test-fhir-app/lib/test_fhir_app/metadata.rb')).to include('authors ["ABC"]')
expect(File.read('test-fhir-app/lib/test_fhir_app/metadata.rb')).to include("authors ['ABC']")
elsif cli_args.count('--author') == 2
expect(File.read('test-fhir-app/lib/test_fhir_app/metadata.rb')).to include('authors ["ABC", "DEF"]')
expect(File.read('test-fhir-app/lib/test_fhir_app/metadata.rb')).to include("authors ['ABC','DEF']")
end

if cli_args.count('--implementation-guide') == 1
Expand Down

0 comments on commit d5137c5

Please sign in to comment.