summary refs log tree commit diff stats
path: root/tests/distros
diff options
context:
space:
mode:
Diffstat (limited to 'tests/distros')
-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
131'>131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173