Skip to content
This repository has been archived by the owner on Jun 19, 2019. It is now read-only.

Commit

Permalink
Merge branch 'tmp' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins@bigbird committed Nov 18, 2014
2 parents 2663177 + 929ba8c commit cf50f28
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 81 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
9.6.3
-----
release: 30 October 2014

- bump util to 6.22.2-SNAPSHOT

9.6.1
-----
release: 24 October 2014
Expand Down
76 changes: 0 additions & 76 deletions pom.xml

This file was deleted.

4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Keys._
import Tests._

object Ostrich extends Build {
val libVersion = "9.6.1"
val utilVersion = "6.22.1"
val libVersion = "9.6.3"
val utilVersion = "6.22.2"

val sharedSettings = Seq(
name := "ostrich",
Expand Down
6 changes: 3 additions & 3 deletions src/test/scala/com/twitter/ostrich/stats/HistogramSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class HistogramSpec extends SpecificationWithJUnit {

"maximum" in {
histogram.add(95)
histogram.minimum mustEqual 95
histogram.maximum mustEqual 95
}

"maximum with no values" in {
Expand Down Expand Up @@ -211,7 +211,7 @@ class HistogramSpec extends SpecificationWithJUnit {
histogram.getPercentile(0.1) must beGreaterThan(0)
}

"Substracting two histograms must never have negative count" in {
"Subtracting two histograms must never have negative count" in {
histogram.add(1)
histogram2.add(1)
histogram2.add(10)
Expand All @@ -221,7 +221,7 @@ class HistogramSpec extends SpecificationWithJUnit {
h.getPercentile(0.9999) mustEqual 0
}

"Substracting two histograms must work" in {
"Subtracting two histograms must work" in {
val n = 10
(1 to 2*n) foreach { i => histogram.add(i) }
(1 to n) foreach { i => histogram2.add(i) }
Expand Down

0 comments on commit cf50f28

Please sign in to comment.