summaryrefslogtreecommitdiff
path: root/Userland/Utilities/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/test.cpp')
-rw-r--r--Userland/Utilities/test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Utilities/test.cpp b/Userland/Utilities/test.cpp
index a81c84933c..0cf039e135 100644
--- a/Userland/Utilities/test.cpp
+++ b/Userland/Utilities/test.cpp
@@ -158,7 +158,7 @@ private:
case SymbolicLink:
return S_ISLNK(statbuf.st_mode);
default:
- ASSERT_NOT_REACHED();
+ VERIFY_NOT_REACHED();
}
}
@@ -193,7 +193,7 @@ private:
case Any:
return access(m_path.characters(), F_OK) == 0;
default:
- ASSERT_NOT_REACHED();
+ VERIFY_NOT_REACHED();
}
}
@@ -272,7 +272,7 @@ private:
case NotEqual:
return m_lhs != m_rhs;
default:
- ASSERT_NOT_REACHED();
+ VERIFY_NOT_REACHED();
}
}
@@ -325,7 +325,7 @@ private:
case ModificationTimestampGreater:
return statbuf_l.st_mtime > statbuf_r.st_mtime;
default:
- ASSERT_NOT_REACHED();
+ VERIFY_NOT_REACHED();
}
}