summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--tests/distros/tdistros_detect.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/distros/tdistros_detect.nim b/tests/distros/tdistros_detect.nim
index 793a9edd3..9639cfeb9 100644
--- a/tests/distros/tdistros_detect.nim
+++ b/tests/distros/tdistros_detect.nim
@@ -7,15 +7,15 @@ discard """
 
 when defined(windows):
     doAssert detectOs(Windows) == true
-    doAssert detectOs(Ubuntu) == false
+    doAssert detectOs(Linux) == false
     doAssert detectOs(MacOSX) == false
 
 when defined(linux):
-    doAssert detectOs(Ubuntu) == true
+    doAssert detectOs(Linux) == true
     doAssert detectOs(Windows) == false
     doAssert detectOs(MacOSX) == false
 
 when defined(macosx):
     doAssert detectOs(MacOSX) == true
     doAssert detectOs(Windows) == false
-    doAssert detectOs(Ubuntu) == false
\ No newline at end of file
+    doAssert detectOs(Linux) == false