Skip to content

Commit

Permalink
Add .NET to the qualified name
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoocasali committed Feb 8, 2022
1 parent 953d52d commit c1bdea0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Meilisearch/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class Version
/// <returns>Returns a formatted version.</returns>
public string GetQualifiedVersion()
{
return $"Meilisearch (v{this.GetVersion()})";
return $"Meilisearch .NET (v{this.GetVersion()})";
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion tests/Meilisearch.Tests/VersionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void GetQualifiedVersion()
var qualifiedVersion = this.version.GetQualifiedVersion();
var version = this.version.GetVersion();

Assert.Equal(qualifiedVersion, $"Meilisearch (v{version})");
Assert.Equal(qualifiedVersion, $"Meilisearch .NET (v{version})");
}

[Fact]
Expand Down

0 comments on commit c1bdea0

Please sign in to comment.