Skip to content

Commit

Permalink
Merge pull request #353 from kevinvandervlist/master
Browse files Browse the repository at this point in the history
Fixing a hystrix-examples compilation failure.
  • Loading branch information
benjchristensen committed Dec 11, 2014
2 parents 3b4ef6c + b4ab356 commit ad3ed06
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ public void testObservable() throws Exception {
Observable<String> fBob = new CommandHelloWorld("Bob").observe();

// blocking
assertEquals("Hello World!", fWorld.toBlockingObservable().single());
assertEquals("Hello Bob!", fBob.toBlockingObservable().single());
assertEquals("Hello World!", fWorld.toBlocking().single());
assertEquals("Hello Bob!", fBob.toBlocking().single());

// non-blocking
// - this is a verbose anonymous inner-class approach and doesn't do assertions
Expand Down

0 comments on commit ad3ed06

Please sign in to comment.