fix: fixes name in various files
Build & Deploy / build (push) Failing after 1m13s

This commit is contained in:
lucretia.dietz
2026-07-20 07:54:02 +02:00
parent 31aed75ee4
commit 6278bfbcfc
39 changed files with 112 additions and 112 deletions
@@ -2,7 +2,7 @@ using System.Diagnostics;
using System.Text.Json;
using Xunit;
namespace ReverseLlama.Client.Tests;
namespace Ngino.Client.Tests;
public sealed class PackageAuditTests
{
@@ -32,7 +32,7 @@ public sealed class PackageAuditTests
var directory = new DirectoryInfo(AppContext.BaseDirectory);
while (directory is not null)
{
var solutionPath = Path.Combine(directory.FullName, "ReverseLlama.sln");
var solutionPath = Path.Combine(directory.FullName, "Ngino.sln");
if (File.Exists(solutionPath))
{
return solutionPath;
@@ -41,7 +41,7 @@ public sealed class PackageAuditTests
directory = directory.Parent;
}
throw new InvalidOperationException("Could not find ReverseLlama.sln from the test output directory.");
throw new InvalidOperationException("Could not find Ngino.sln from the test output directory.");
}
private static async Task<CommandResult> RunDotnetPackageAuditAsync(string solutionPath)
@@ -18,7 +18,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ReverseLlama.Client\ReverseLlama.Client.csproj" />
<ProjectReference Include="..\..\src\Ngino.Client\Ngino.Client.csproj" />
</ItemGroup>
</Project>
@@ -1,8 +1,8 @@
using System.Text.Json;
using ReverseLlama.Client;
using Ngino.Client;
using Xunit;
namespace ReverseLlama.Client.Tests;
namespace Ngino.Client.Tests;
public sealed class TunnelClientModelTests
{
@@ -56,7 +56,7 @@ public sealed class TunnelClientModelTests
Assert.Equal(HttpMethod.Post, request.Method);
Assert.Equal("http://localhost:11434/api/embed", request.RequestUri!.AbsoluteUri);
Assert.Equal("bge-m3:latest", document.RootElement.GetProperty("model").GetString());
Assert.Equal("ReverseLlama warmup", document.RootElement.GetProperty("input").GetString());
Assert.Equal("Ngino warmup", document.RootElement.GetProperty("input").GetString());
Assert.Equal(expectedKeepAlive, document.RootElement.GetProperty("keep_alive").GetInt32());
}
}
@@ -1,7 +1,7 @@
using ReverseLlama.Client;
using Ngino.Client;
using Xunit;
namespace ReverseLlama.Client.Tests;
namespace Ngino.Client.Tests;
public sealed class UpstreamRequestTests
{