Skip to content

Commit 8d7f05e

Browse files
committed
use available directories in ported tests
1 parent 473c60a commit 8d7f05e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests-integration/Elastic.Assembler.IntegrationTests/GlobalNavigationTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private async Task<AssembleSources> Setup()
6464
_ = Collector.StartAsync(TestContext.Current.CancellationToken);
6565

6666
string[] nar = [NarrativeRepository.RepositoryName];
67-
var repos = nar.Concat(Context.Configuration.ReferenceRepositories
67+
var repos = nar.Concat(Context.Configuration.AvailableRepositories
6868
.Where(kv => !kv.Value.Skip)
6969
.Select(kv => kv.Value.Name)
7070
)
@@ -197,7 +197,7 @@ public async Task ParsesGlobalNavigation()
197197
assembleSources.NavigationTocMappings[kibanaExtendMoniker].TopLevelSource.Should().Be(expectedRoot);
198198
assembleSources.NavigationTocMappings.Should().NotBeEmpty().And.ContainKey(new Uri("docs-content://reference/apm/"));
199199

200-
var uri = new Uri("integration-docs://reference/");
200+
var uri = new Uri("integrations://reference/");
201201
assembleSources.TreeCollector.Should().NotBeNull();
202202
_ = assembleSources.TreeCollector.TryGetTableOfContentsTree(uri, out var tree);
203203
tree.Should().NotBeNull();

0 commit comments

Comments
 (0)