Skip to content

Commit b99d86a

Browse files
committed
nocache on yaml test generator so we can do a clean generation from 1.1
1 parent fe219eb commit b99d86a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/CodeGeneration/CodeGeneration.YamlTestsRunner/YamlTestsGenerator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ namespace CodeGeneration.YamlTestsRunner
2424
using YamlTestSuite = Dictionary<string, object>;
2525
public static class YamlTestsGenerator
2626
{
27-
private readonly static string _listingUrl = "https://github.com/elasticsearch/elasticsearch/tree/v1.0.0/rest-api-spec/test";
28-
private readonly static string _rawUrlPrefix = "https://raw.github.com/elasticsearch/elasticsearch/v1.0.0/rest-api-spec/test/";
27+
private readonly static string _listingUrl = "https://github.com/elasticsearch/elasticsearch/tree/v1.1.0/rest-api-spec/test";
28+
private readonly static string _rawUrlPrefix = "https://raw.github.com/elasticsearch/elasticsearch/v1.1.0/rest-api-spec/test/";
2929
private readonly static string _testProjectFolder = @"..\..\..\..\..\src\Tests\Elasticsearch.Net.Integration.Yaml\";
3030
private readonly static string _rawClientInterface = @"..\..\..\..\..\src\Elasticsearch.Net\IElasticsearchClient.generated.cs";
3131
private readonly static string _viewFolder = @"..\..\Views\";

src/Tests/Nest.Tests.Integration/Reproduce/ReproduceConnectionStallsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void SearchShouldNotHaveBlips()
5858

5959
var minElasticsearch = timings.Min(t => t.ElasticsearchTook);
6060
var minNest = timings.Min(t => t.NestTook);
61-
61+
6262
//elasticsearch is fast! min should absolutely be below 2ms
6363
minElasticsearch.Should().BeLessThan(10);
6464

0 commit comments

Comments
 (0)