Skip to content

Commit

Permalink
Merge pull request #9715 from brahmaroutu/gccgo_power1
Browse files Browse the repository at this point in the history
Fix to avoid a compile error due to float to int truncation with GCCGO
  • Loading branch information
crosbymichael committed Dec 18, 2014
2 parents 1f9b6fe + c16e412 commit f1562ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/units/size_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ func TestHumanSize(t *testing.T) {
assertEquals(t, "1 MB", HumanSize(1000000))
assertEquals(t, "1.049 MB", HumanSize(1048576))
assertEquals(t, "2 MB", HumanSize(2*MB))
assertEquals(t, "3.42 GB", HumanSize(3.42*GB))
assertEquals(t, "5.372 TB", HumanSize(5.372*TB))
assertEquals(t, "2.22 PB", HumanSize(2.22*PB))
assertEquals(t, "3.42 GB", HumanSize(int64(float64(3.42*GB))))
assertEquals(t, "5.372 TB", HumanSize(int64(float64(5.372*TB))))
assertEquals(t, "2.22 PB", HumanSize(int64(float64(2.22*PB))))
}

func TestFromHumanSize(t *testing.T) {
Expand Down

0 comments on commit f1562ac

Please sign in to comment.