rebase fixes
This commit is contained in:
parent
6b995ac701
commit
7d31ba835a
|
@ -12,7 +12,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestBondedRatio(t *testing.T) {
|
func TestBondedRatio(t *testing.T) {
|
||||||
ctx, _, keeper := createTestInput(t, nil, false, 0)
|
ctx, _, keeper := createTestInput(t, false, 0)
|
||||||
pool := keeper.GetPool(ctx)
|
pool := keeper.GetPool(ctx)
|
||||||
pool.TotalSupply = 3
|
pool.TotalSupply = 3
|
||||||
pool.BondedPool = 2
|
pool.BondedPool = 2
|
||||||
|
@ -26,7 +26,7 @@ func TestBondedRatio(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestBondedShareExRate(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 := keeper.GetPool(ctx)
|
||||||
pool.BondedPool = 3
|
pool.BondedPool = 3
|
||||||
pool.BondedShares = sdk.NewRat(10)
|
pool.BondedShares = sdk.NewRat(10)
|
||||||
|
@ -40,7 +40,7 @@ func TestBondedShareExRate(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestUnbondedShareExRate(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 := keeper.GetPool(ctx)
|
||||||
pool.UnbondedPool = 3
|
pool.UnbondedPool = 3
|
||||||
pool.UnbondedShares = sdk.NewRat(10)
|
pool.UnbondedShares = sdk.NewRat(10)
|
||||||
|
|
Loading…
Reference in New Issue