Fix test class name for mono_time_test.

Was: Util, should be: MonoTime.
This commit is contained in:
iphydf 2018-08-26 17:41:11 +00:00
parent a1035cf814
commit 368e7e37bc
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -4,7 +4,7 @@
namespace {
TEST(Util, UnixTimeIncreasesOverTime) {
TEST(MonoTime, UnixTimeIncreasesOverTime) {
Mono_Time *mono_time = mono_time_new();
mono_time_update(mono_time);
@ -20,7 +20,7 @@ TEST(Util, UnixTimeIncreasesOverTime) {
mono_time_free(mono_time);
}
TEST(Util, IsTimeout) {
TEST(MonoTime, IsTimeout) {
Mono_Time *mono_time = mono_time_new();
uint64_t const start = mono_time_get(mono_time);