summaryrefslogtreecommitdiff
path: root/toxcore/mono_time_test.cc
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-08-26 17:41:11 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-08-26 18:18:47 +0000
commit368e7e37bca3dc93dbf7108801a8180a736419a8 (patch)
treebc13c6de4315eeaefeebaac0f6c946b1825ac4f2 /toxcore/mono_time_test.cc
parenta1035cf81494c3ab22c49b01788ca8ad933c5eb0 (diff)
Fix test class name for mono_time_test.
Was: Util, should be: MonoTime.
Diffstat (limited to 'toxcore/mono_time_test.cc')
-rw-r--r--toxcore/mono_time_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxcore/mono_time_test.cc b/toxcore/mono_time_test.cc
index 3e241b17..4ed59406 100644
--- a/toxcore/mono_time_test.cc
+++ b/toxcore/mono_time_test.cc
@@ -4,7 +4,7 @@
4 4
5namespace { 5namespace {
6 6
7TEST(Util, UnixTimeIncreasesOverTime) { 7TEST(MonoTime, UnixTimeIncreasesOverTime) {
8 Mono_Time *mono_time = mono_time_new(); 8 Mono_Time *mono_time = mono_time_new();
9 9
10 mono_time_update(mono_time); 10 mono_time_update(mono_time);
@@ -20,7 +20,7 @@ TEST(Util, UnixTimeIncreasesOverTime) {
20 mono_time_free(mono_time); 20 mono_time_free(mono_time);
21} 21}
22 22
23TEST(Util, IsTimeout) { 23TEST(MonoTime, IsTimeout) {
24 Mono_Time *mono_time = mono_time_new(); 24 Mono_Time *mono_time = mono_time_new();
25 25
26 uint64_t const start = mono_time_get(mono_time); 26 uint64_t const start = mono_time_get(mono_time);