From 1ae84c3f969e493055a1dba37da36b6cfb0a575a Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Sat, 8 Apr 2017 16:05:26 +0100 Subject: [PATCH] Issue #2867887 by xjm: statistics_get() test mashes 0 too much --- core/modules/statistics/src/Tests/StatisticsLoggingTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/statistics/src/Tests/StatisticsLoggingTest.php b/core/modules/statistics/src/Tests/StatisticsLoggingTest.php index 6f2f66766a12..a75f89638dc4 100644 --- a/core/modules/statistics/src/Tests/StatisticsLoggingTest.php +++ b/core/modules/statistics/src/Tests/StatisticsLoggingTest.php @@ -129,7 +129,7 @@ class StatisticsLoggingTest extends WebTestBase { // Try fetching statistics for an invalid node ID and verify it returns // FALSE. - $node_id = 10000000000000000; + $node_id = 1000000; $node = Node::load($node_id); $this->assertNull($node);