[spellchecker] Spelling fixes (#17655)

* spelling: microphone

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>

* spelling: position

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>

* spelling: property

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>

* spelling: serialization

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>

* spelling: settings

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>

* spelling: testprocess

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>

* Ignore rotating

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>

Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2022-04-12 11:13:22 -04:00
committed by GitHub
parent 86783e9815
commit 52709ddc4a
40 changed files with 50 additions and 49 deletions

View File

@@ -298,9 +298,9 @@ namespace UnitTestsCommonLib
int actualSize = expectedSize;
wchar_t* buffer = new wchar_t[expectedSize];
bool serizalizationSuccess = settings.serialize_to_buffer(buffer, &actualSize);
bool serializationSuccess = settings.serialize_to_buffer(buffer, &actualSize);
Assert::IsTrue(serizalizationSuccess);
Assert::IsTrue(serializationSuccess);
Assert::AreEqual(expectedSize, actualSize);
auto actualJson = json::JsonObject::Parse(std::wstring(buffer));