Skip to content

Commit

Permalink
Formatter pass.
Browse files Browse the repository at this point in the history
  • Loading branch information
mukel committed Jul 8, 2019
1 parent ad63ef9 commit 343d9d1
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,7 @@ public void testOptionValues() {
// A language option was set, not the instrument one. Instrument sees no option set:
assertFalse(optionValues.hasSetOptions());

engine = Engine.newBuilder() //
.allowExperimentalOptions(true) //
.option("optiontestinstr1.Thresholds.MaxRetries", "123") //
.option("optiontestinstr1.Thresholds.Capacity", "456") //
.build();
engine = Engine.newBuilder().allowExperimentalOptions(true).option("optiontestinstr1.Thresholds.MaxRetries", "123").option("optiontestinstr1.Thresholds.Capacity", "456").build();
optionValues = engine.getInstruments().get("optiontestinstr1").lookup(OptionValues.class);
assertTrue(optionValues.hasSetOptions());
assertNull(descriptors.get("optiontestinstr1.ThresholdsDoesNotMatchPrefix"));
Expand Down

0 comments on commit 343d9d1

Please sign in to comment.