Skip to content

Commit

Permalink
test string with national letters
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-knozderko committed Jul 31, 2024
1 parent f6c14c5 commit 22aee7e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void TestSelectAllUnstructuredTypesObject()
var expectedOffset = timeZone.GetUtcOffset(DateTime.Parse("2024-07-11 14:20:05"));
var expectedOffsetString = ToOffsetString(expectedOffset);
var allTypesObjectAsSFString = @"OBJECT_CONSTRUCT(
'StringValue', 'abc',
'StringValue', 'abcąęśźń',
'CharValue', 'x',
'ByteValue', 15,
'SByteValue', -14,
Expand Down Expand Up @@ -79,7 +79,7 @@ SemiStructuredValue OBJECT

// assert
Assert.NotNull(allUnstructuredTypesObject);
Assert.AreEqual("abc", allUnstructuredTypesObject.StringValue);
Assert.AreEqual("abcąęśźń", allUnstructuredTypesObject.StringValue);
Assert.AreEqual('x', allUnstructuredTypesObject.CharValue);
Assert.AreEqual(15, allUnstructuredTypesObject.ByteValue);
Assert.AreEqual(-14, allUnstructuredTypesObject.SByteValue);
Expand Down

0 comments on commit 22aee7e

Please sign in to comment.