Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Merge branch 'fixes/cache-date-time' into releases/0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleyGoldman committed Nov 20, 2017
2 parents 845df0f + 65e1a0d commit b233934
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public async Task LogEntriesTest()
CommitID = "018997938335742f8be694240a7c2b352ec0835f",
Description = "Moving project files where they should be kept",
Summary = "Moving project files where they should be kept",
TimeString = firstCommitTime.ToString(DateTimeFormatInfo.CurrentInfo),
CommitTimeString = firstCommitTime.ToString(DateTimeFormatInfo.CurrentInfo),
TimeString = firstCommitTime.ToString(Constants.Iso8601Format),
CommitTimeString = firstCommitTime.ToString(Constants.Iso8601Format),
},
new GitLogEntry
{
Expand All @@ -75,8 +75,8 @@ public async Task LogEntriesTest()
CommitID = "03939ffb3eb8486dba0259b43db00842bbe6eca1",
Description = "Initial Commit",
Summary = "Initial Commit",
TimeString = secondCommitTime.ToString(DateTimeFormatInfo.CurrentInfo),
CommitTimeString = secondCommitTime.ToString(DateTimeFormatInfo.CurrentInfo),
TimeString = secondCommitTime.ToString(Constants.Iso8601Format),
CommitTimeString = secondCommitTime.ToString(Constants.Iso8601Format),
},
});
}
Expand Down Expand Up @@ -110,8 +110,8 @@ public async Task RussianLogEntriesTest()
CommitID = "06d6451d351626894a30e9134f551db12c74254b",
Description = "Я люблю github",
Summary = "Я люблю github",
TimeString = commitTime.ToString(DateTimeFormatInfo.CurrentInfo),
CommitTimeString = commitTime.ToString(DateTimeFormatInfo.CurrentInfo),
TimeString = commitTime.ToString(Constants.Iso8601Format),
CommitTimeString = commitTime.ToString(Constants.Iso8601Format),
}
});
}
Expand Down
4 changes: 2 additions & 2 deletions src/tests/UnitTests/IO/LogEntryOutputProcessorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public void ShouldParseSingleCommit()
},
Summary = "Rename RepositoryModelBase to RepositoryModel",
Description = "Rename RepositoryModelBase to RepositoryModel",
TimeString = commitTime.ToString(DateTimeFormatInfo.CurrentInfo),
CommitTimeString = commitTime.ToString(DateTimeFormatInfo.CurrentInfo),
TimeString = commitTime.ToString(Constants.Iso8601Format),
CommitTimeString = commitTime.ToString(Constants.Iso8601Format),
},
};

Expand Down

0 comments on commit b233934

Please sign in to comment.