Skip to content

Commit

Permalink
Revert "fix: address mend violation (non-critical: fake token in test…
Browse files Browse the repository at this point in the history
… case)"

This reverts commit 5ac1718.
  • Loading branch information
Tr00d committed Jan 15, 2025
1 parent 92b95a2 commit 0f403ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sessionId": "flR1ZSBPY3QgMjkgMTI6MTM6MjMgUERUIDIwMTN",
"token": "123",
"token": "830c9c9d-d09e-4513-9cc8-29c90a760248",
"languageCode": "en-US",
"maxDuration": 14400,
"partialCaptions": true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sessionId": "flR1ZSBPY3QgMjkgMTI6MTM6MjMgUERUIDIwMTN",
"token": "123",
"token": "830c9c9d-d09e-4513-9cc8-29c90a760248",
"languageCode": "fr-FR",
"maxDuration": 10000,
"partialCaptions": false,
Expand Down
4 changes: 2 additions & 2 deletions Vonage.Test/Video/LiveCaptions/Start/SerializationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ internal static Result<StartRequest> BuildRequest() =>
.Build()
.WithApplicationId(new Guid("e3e78a75-221d-41ec-8846-25ae3db1943a"))
.WithSessionId("flR1ZSBPY3QgMjkgMTI6MTM6MjMgUERUIDIwMTN")
.WithToken("123")
.WithToken("830c9c9d-d09e-4513-9cc8-29c90a760248")
.Create();

internal static Result<StartRequest> BuildRequestWithOptionalValues() =>
StartRequest
.Build()
.WithApplicationId(new Guid("e3e78a75-221d-41ec-8846-25ae3db1943a"))
.WithSessionId("flR1ZSBPY3QgMjkgMTI6MTM6MjMgUERUIDIwMTN")
.WithToken("123")
.WithToken("830c9c9d-d09e-4513-9cc8-29c90a760248")
.WithMaxDuration(10000)
.WithLanguage("fr-FR")
.WithStatusCallbackUrl(new Uri("https://example.com"))
Expand Down

0 comments on commit 0f403ca

Please sign in to comment.