Skip to content

Commit

Permalink
Improve ConigProvierTest tck bug (#715)
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily-Jiang authored Sep 16, 2021
1 parent 8d4446a commit 62acc53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions spec/src/main/asciidoc/release_notes.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ There are no functional changes introduced in this release, except the dependenc
==== Other Changes
- @ConfigProperties Javadoc clarification (link:https://github.com/eclipse/microprofile-config/issues/681[681])
- The Spec and JavaDoc are inconsistent about String Converters (link:https://github.com/eclipse/microprofile-config/issues/680[680])
- ConfigProviderTest TCK bug (link:https://github.com/eclipse/microprofile-config/issues/664[664])

[[release_notes_20]]
=== Release Notes for MicroProfile Config 2.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016-2017 Contributors to the Eclipse Foundation
* Copyright (c) 2016, 2021 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -83,7 +83,6 @@ public static void setupCheck() {

@Test
public void testEnvironmentConfigSource() {
Assert.assertNotNull(config.getValue("path", String.class));
String value = System.getenv().get("MP_TCK_ENV_DUMMY");
Assert.assertNotNull(value);
Assert.assertEquals("dummy", value);
Expand Down

0 comments on commit 62acc53

Please sign in to comment.