Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tests/authoring/Framework/MarkdownDocumentAssertions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@
let matter = result.File.YamlFrontMatter
match matter with
| NonNull m ->
if expectedAvailability <> null then
m.AppliesTo.Diagnostics <- expectedAvailability.Diagnostics
m.AppliesTo.Diagnostics <- expectedAvailability.Diagnostics

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (windows-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (windows-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (windows-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (windows-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (macos-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (macos-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (macos-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / build (macos-latest)

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / integration

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / integration

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / integration

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.

Check warning on line 36 in tests/authoring/Framework/MarkdownDocumentAssertions.fs

View workflow job for this annotation

GitHub Actions / integration

Nullness warning: The types 'ApplicableTo' and 'ApplicableTo | null' do not have compatible nullability.
let apply = m.AppliesTo
test <@ apply = expectedAvailability @>
| _ -> failwithf "%s has no yamlfront matter" result.File.RelativePath
Expand Down
Loading