From 7d31ba835a7b9643e4ec934c2848e1396ea2566a Mon Sep 17 00:00:00 2001 From: rigelrozanski Date: Wed, 4 Apr 2018 23:25:04 -0400 Subject: [PATCH] rebase fixes --- x/stake/pool_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x/stake/pool_test.go b/x/stake/pool_test.go index 54788f8b6f..cf1cd7ca24 100644 --- a/x/stake/pool_test.go +++ b/x/stake/pool_test.go @@ -12,7 +12,7 @@ import ( ) func TestBondedRatio(t *testing.T) { - ctx, _, keeper := createTestInput(t, nil, false, 0) + ctx, _, keeper := createTestInput(t, false, 0) pool := keeper.GetPool(ctx) pool.TotalSupply = 3 pool.BondedPool = 2 @@ -26,7 +26,7 @@ func TestBondedRatio(t *testing.T) { } func TestBondedShareExRate(t *testing.T) { - ctx, _, keeper := createTestInput(t, nil, false, 0) + ctx, _, keeper := createTestInput(t, false, 0) pool := keeper.GetPool(ctx) pool.BondedPool = 3 pool.BondedShares = sdk.NewRat(10) @@ -40,7 +40,7 @@ func TestBondedShareExRate(t *testing.T) { } func TestUnbondedShareExRate(t *testing.T) { - ctx, _, keeper := createTestInput(t, nil, false, 0) + ctx, _, keeper := createTestInput(t, false, 0) pool := keeper.GetPool(ctx) pool.UnbondedPool = 3 pool.UnbondedShares = sdk.NewRat(10)