Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
Relates to issue eclipse-ee4j#4734 and pull request eclipse-ee4j#4745
  • Loading branch information
nunomsantos committed Mar 14, 2022
1 parent 7eba134 commit 659b215
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -222,7 +222,6 @@ public LoggingFeature(Logger logger, Level level, Verbosity verbosity, Integer m
.level(level)
.verbosity(verbosity)
.maxEntitySize(maxEntitySize)
.separator(DEFAULT_SEPARATOR)
);

}
Expand Down Expand Up @@ -405,4 +404,4 @@ public LoggingFeature build() {
return new LoggingFeature(this);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public void testLoggingFeatureBuilderSeparator() {

}

@Test(expected = AssertionError.class)
@Test
public void testLoggingFeatureBuilderProperty() {
final Response response = target("/text")
.register(LoggingFeature.class)
Expand Down

0 comments on commit 659b215

Please sign in to comment.