Skip to content

Commit

Permalink
Enable unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Manfred Riem committed Feb 6, 2021
1 parent 16c1005 commit 36cbe88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn --no-transfer-progress -DskipTests -DskipITs install
run: mvn --no-transfer-progress install
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ api/**/.project
/dependencies
glassfish-8.0/
nbactions.xml
/test/javaee8/passthrough/nb-configuration.xml
nb-configuration.xml
*.DS_Store
.idea/
Mojarra.iml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public Object eval(Serializable key, Supplier<Object> defaultValueSupplier) {

}

if (retVal == null) {
if (retVal == null && defaultValueSupplier != null) {
retVal = defaultValueSupplier.get();
}

Expand Down

0 comments on commit 36cbe88

Please sign in to comment.