From 1ba15e141aee8a9380261ad00ae5c7e3517a51e3 Mon Sep 17 00:00:00 2001 From: Tim Mecklem Date: Mon, 21 May 2018 22:15:46 -0400 Subject: [PATCH] Fix assertion --- apps/explorer/test/explorer/chain/statistics_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/explorer/test/explorer/chain/statistics_test.exs b/apps/explorer/test/explorer/chain/statistics_test.exs index 1b19de5063..2c6a046599 100644 --- a/apps/explorer/test/explorer/chain/statistics_test.exs +++ b/apps/explorer/test/explorer/chain/statistics_test.exs @@ -102,7 +102,7 @@ defmodule Explorer.Chain.StatisticsTest do statistics = Statistics.fetch() - assert statistics.transactions |> Enum.count() == 6 + assert statistics.transactions |> Enum.count() == 5 end end end