Skip to content

Commit 2b4aae9

Browse files
authored
Merge branch 'OpenAPITools:master' into fix/kotlin-spring-jackson3-datetime-property
2 parents 68a77f1 + 03c13fb commit 2b4aae9

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • samples/client/petstore/csharp/generichost/latest/UseDateTimeOffset/src/Org.OpenAPITools.Test/Api

samples/client/petstore/csharp/generichost/latest/UseDateTimeOffset/src/Org.OpenAPITools.Test/Api/ApiTestsBase.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaul
7676
string oauthTokenValue1 = context.Configuration["<token>"] ?? throw new Exception("Token not found.");
7777
OAuthToken oauthToken1 = new(oauthTokenValue1, timeout: TimeSpan.FromSeconds(1));
7878
options.AddTokens(oauthToken1);
79+
string oauthTokenValue2 = context.Configuration["<token>"] ?? throw new Exception("Token not found.");
80+
OAuthToken oauthToken2 = new(oauthTokenValue2, timeout: TimeSpan.FromSeconds(1));
81+
options.AddTokens(oauthToken2);
7982
});
8083
}
8184
}

0 commit comments

Comments
 (0)