From b434b320a127086c0db9d08cf03d36868cb2b7f2 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Thu, 18 Jan 2018 10:17:30 +0000 Subject: [PATCH] Fixed an intermittent test failure --- .../destinations/juce_ThreadedAnalyticsDestination.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/juce_analytics/destinations/juce_ThreadedAnalyticsDestination.cpp b/modules/juce_analytics/destinations/juce_ThreadedAnalyticsDestination.cpp index f1f97578f1..8fdd18472d 100644 --- a/modules/juce_analytics/destinations/juce_ThreadedAnalyticsDestination.cpp +++ b/modules/juce_analytics/destinations/juce_ThreadedAnalyticsDestination.cpp @@ -184,9 +184,11 @@ namespace DestinationTestHelpers for (auto& event : events) loggedEventQueue.push_back (event); + + return true; } - return true; + return false; } void stopLoggingEvents() override {}