Skip to content

Commit

Permalink
Enforced code styling rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Przywóski committed Aug 30, 2024
1 parent 8db8266 commit a1e16f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ExportViewer.Tests/DataParsingService_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public DataParsingService_Tests ()
}

[Fact]
public async Task GetExportType_ReturnsJson ()
public async Task GetExportType_ReturnsJson()
{
// Arrange
string tempDir = Path.Combine(Path.GetTempPath() , Guid.NewGuid().ToString());
Expand All @@ -39,7 +39,7 @@ public async Task GetExportType_ReturnsJson ()
}

[Fact]
public async Task GetExportType_ReturnsHtml ()
public async Task GetExportType_ReturnsHtml()
{
// Arrange
string tempDir = Path.Combine(Path.GetTempPath() , Guid.NewGuid().ToString());
Expand All @@ -61,7 +61,7 @@ public async Task GetExportType_ReturnsHtml ()
[Theory]
[InlineData("./TestData/GetExportLanguageXPath1")]
[InlineData("./TestData/GetExportLanguageXPath2")]
public async Task GetExportLanguage_Html_ReturnsCultureInfo (string exportLocation)
public async Task GetExportLanguage_Html_ReturnsCultureInfo(string exportLocation)
{
string fullPath = Path.Combine(Path.GetFullPath(exportLocation));
var locale = await _dataParsingService.GetExportLanguage(fullPath , ExportType.HTML , _progress);
Expand Down

0 comments on commit a1e16f1

Please sign in to comment.