I have test data that is Pascal Case.
|Verify Objects|
|Name|Value|InitialName |...|
|A |B |AlphaName[?]|...|
How do I remove the automatic [?]
feature that is showing up for my test data? It is causing it to fail verification.
I tried spacing the words out, which stopped [?]
but now the data is wrong. Surrounding the words in quotations also worked, but then the data is wrong as well.
I was able to fix this problem by adding !
to the beginning of the fixture:
!|Verify Objects|
|Name|Value|InitialName |...|
|A |B |AlphaName[?]|...|
Found the answer in a discussion here.