Update cspell.json to include OIDC to fix spell check error in event-processor.yml (#4544)

* Minor tweak to event-processor.yml to trigger cspell checks

* Cosmetic change to context_test.cpp in azure-core to trigger CI pipelines

* Update cspell.json to include OIDC
This commit is contained in:
Ahson Khan 2023-04-11 15:55:01 -07:00 коммит произвёл GitHub
Родитель cfe34de5b3
Коммит 1c15232a63
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 2 удалений

2
.github/workflows/event-processor.yml поставляемый
Просмотреть файл

@ -59,7 +59,7 @@ jobs:
# To run github-event-processor built from source, for testing purposes, uncomment everything
# in between the Start/End-Build From Source comments and comment everything in between the
# Start/End-Install comments
# Start/End-Install comments.
# Start-Install
- name: Install GitHub Event Processor
run: >

1
.vscode/cspell.json поставляемый
Просмотреть файл

@ -108,6 +108,7 @@
"northcentralus",
"nostd",
"NTSTATUS",
"OIDC",
"okhttp",
"opentelemetry",
"otel",

Просмотреть файл

@ -453,7 +453,7 @@ TEST(Context, PreCondition)
// Type-safe assert requires RTTI build
#if defined(NDEBUG)
// Release build won't provide assert msg
// Release build won't provide an assert message
ASSERT_DEATH(c2.TryGetValue<int>(key, value), "");
#else
ASSERT_DEATH(c2.TryGetValue<int>(key, value), "Type mismatch for Context::TryGetValue");