From 60de4bbcbb808fbc778bbec61a85adc2439b0344 Mon Sep 17 00:00:00 2001 From: Gus Carreon Date: Tue, 17 Aug 2021 13:23:22 -0400 Subject: [PATCH] Brian's review --- currency/rate_converter_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/currency/rate_converter_test.go b/currency/rate_converter_test.go index 261b954807e..59cb0f8c4ef 100644 --- a/currency/rate_converter_test.go +++ b/currency/rate_converter_test.go @@ -54,7 +54,6 @@ func TestReadWriteRates(t *testing.T) { wantUpdateErr bool wantConstantRates bool wantLastUpdated time.Time - wantDataAsOf time.Time wantConversions map[string]map[string]float64 }{ { @@ -63,7 +62,6 @@ func TestReadWriteRates(t *testing.T) { giveMockResponse: getMockRates(), giveMockStatus: 200, wantLastUpdated: time.Date(2018, time.September, 12, 30, 0, 0, 0, time.UTC), - wantDataAsOf: time.Date(2018, time.September, 12, 0, 0, 0, 0, time.UTC), wantConversions: map[string]map[string]float64{"USD": {"GBP": 0.77208}, "GBP": {"USD": 1.2952}}, }, { @@ -72,7 +70,6 @@ func TestReadWriteRates(t *testing.T) { giveMockResponse: []byte("{}"), giveMockStatus: 200, wantLastUpdated: time.Date(2018, time.September, 12, 30, 0, 0, 0, time.UTC), - wantDataAsOf: time.Time{}, wantConversions: nil, }, {