Skip to content

Commit

Permalink
fix(test): work unit export to include additional data
Browse files Browse the repository at this point in the history
  • Loading branch information
harlam357 committed Jan 13, 2024
1 parent 3557fb0 commit eda82e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HFM.Core.Tests/Data/WorkUnitRowCsvFileSerializerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ public void BeforeEach()
{
// Arrange
_value = new List<WorkUnitRow> { new() };
_expected = "DatabaseID,ProjectID,ProjectRun,ProjectClone,ProjectGen,SlotName,ConnectionString,DonorName,DonorTeam,CoreVersion,FramesCompleted,FrameTime,Result,Assigned,Finished,KFactor,Core,Frames,Atoms,SlotType,PPD,Credit,BaseCredit";
_expected = "DatabaseID,ProjectID,ProjectRun,ProjectClone,ProjectGen,SlotName,ConnectionString,DonorName,DonorTeam,CoreVersion,FramesCompleted,FrameTime,Result,Assigned,Finished,KFactor,Core,Frames,Atoms,SlotType,PPD,Credit,BaseCredit,ClientVersion,OperatingSystem,PlatformImplementation,PlatformProcessor,PlatformThreads,DriverVersion,ComputeVersion,CUDAVersion";
_expected += Environment.NewLine;
_expected += "0,0,0,0,0,,,,0,,0,00:00:00,,01/01/0001 00:00:00,01/01/0001 00:00:00,0,,0,0,,0,0,0";
_expected += "0,0,0,0,0,,,,0,,0,00:00:00,,01/01/0001 00:00:00,01/01/0001 00:00:00,0,,0,0,,0,0,0,,,,,,,,";
_expected += Environment.NewLine;
}

Expand Down

0 comments on commit eda82e8

Please sign in to comment.