Skip to content

Commit

Permalink
Rename CI action, fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JustAman62 committed Mar 28, 2024
1 parent be2291d commit 5c3fdae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET
name: CI & Package

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion OpenF1.Data.Tests/Models/RawTimingDataPointUnitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void VerifyParse(string expectedEventType, string expectedData, string ex

// Assert
Assert.NotNull(result);
Assert.Equal("SessionName", result.SessionName);
Assert.Equal("Session Name", result.SessionName);
Assert.Equal(expectedEventType, result.EventType);
Assert.Equal(expectedData, result.EventData);
Assert.Equal(expectedDateTime, result.LoggedDateTime.ToUniversalTime().ToString("u"));
Expand Down

0 comments on commit 5c3fdae

Please sign in to comment.