Skip to content

Commit

Permalink
rnmmp
Browse files Browse the repository at this point in the history
  • Loading branch information
NMSAzulX committed Nov 13, 2024
1 parent 1f14e9a commit f206874
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
发布日志节点案例格式如下(支持多版本发布):
Example:
## [5.1.0.0] - 2023-04-02
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ internal static void JudgeLogSuccess(string script, string fileName, bool withNu
}
private static void CompareLogEqual(string expected, string actual)
{
Assert.Equal(removeTime.Replace(expected, ""), removeTime.Replace(actual, ""));
Assert.True(OSStringCompare.Equal(removeTime.Replace(expected, ""), removeTime.Replace(actual, "")));
}

private static string GetText(string fileName)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ internal static void JudgeLogSuccess(string script, string fileName, bool withNu
}
private static void CompareLogEqual(string expected, string actual)
{
Assert.Equal(removeTime.Replace(expected, ""), removeTime.Replace(actual, ""));
Assert.True(OSStringCompare.Equal(removeTime.Replace(expected, ""), removeTime.Replace(actual, "")));
}

private static string GetText(string fileName)
Expand Down

0 comments on commit f206874

Please sign in to comment.