Index: third_party/WebKit/Source/platform/DecimalTest.cpp |
diff --git a/third_party/WebKit/Source/platform/DecimalTest.cpp b/third_party/WebKit/Source/platform/DecimalTest.cpp |
index 7b5e9388dcc639b81a6c8569a2f330b781b3f901..2ce36fdb9299c11b2e3671c751e72646f7f0818f 100644 |
--- a/third_party/WebKit/Source/platform/DecimalTest.cpp |
+++ b/third_party/WebKit/Source/platform/DecimalTest.cpp |
@@ -51,7 +51,7 @@ class DecimalStepRange { |
Decimal ClampValue(Decimal value) const { |
const Decimal result = minimum + ((value - minimum) / step).Round() * step; |
- ASSERT(result.IsFinite()); |
+ DCHECK(result.IsFinite()); |
return result > maximum ? result - step : result; |
} |
}; |