Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorKrolic committed Aug 2, 2023
1 parent 0818580 commit 392e9cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -367,11 +367,11 @@ class MyClass

viewModel.VerbatimTypeName = "void"
Assert.False(viewModel.CanSubmit(message))
Assert.Equal(ServicesVSResources.void_is_not_a_valid_type_for_a_parameter, message)
Assert.Equal(ServicesVSResources.SystemVoid_is_not_a_valid_type_for_a_parameter, message)

viewModel.VerbatimTypeName = "System.Void"
Assert.False(viewModel.CanSubmit(message))
Assert.Equal(ServicesVSResources.void_is_not_a_valid_type_for_a_parameter, message)
Assert.Equal(ServicesVSResources.SystemVoid_is_not_a_valid_type_for_a_parameter, message)
End Sub
End Class
End Namespace

0 comments on commit 392e9cb

Please sign in to comment.