Update use of Quantity in other classes

This commit is contained in:
Clayton Coleman
2016-05-17 00:36:56 -04:00
parent b2a01d4d94
commit 5e4308f91d
37 changed files with 204 additions and 242 deletions

View File

@@ -3853,16 +3853,16 @@ func TestExtractBandwidthResources(t *testing.T) {
},
{
pod: testPod("10M", ""),
expectedIngress: ten,
expectedIngress: &ten,
},
{
pod: testPod("", "10M"),
expectedEgress: ten,
expectedEgress: &ten,
},
{
pod: testPod("4M", "20M"),
expectedIngress: four,
expectedEgress: twenty,
expectedIngress: &four,
expectedEgress: &twenty,
},
{
pod: testPod("foo", ""),