Skip to content

Commit

Permalink
enable provider option not useful for integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
pstaeck committed Apr 16, 2024
1 parent fcabe35 commit 513334f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,6 @@ protected void defaultConfigure() {
bind(TestSuiteConfig.CONSUMER_DEVICE_LOCATION_ROOM, String.class, this.locationConfig.room);
bind(TestSuiteConfig.CONSUMER_DEVICE_LOCATION_BED, String.class, this.locationConfig.bed);

bind(TestProviderConfig.PROVIDER_ENABLE, Boolean.class, true);
bind(TestProviderConfig.PROVIDER_DEVICE_EPR, String.class, DUT_EPR);

bind(TestSuiteConfig.NETWORK_INTERFACE_ADDRESS, String.class, "127.0.0.1");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public final class TestProviderConfig {
* Provider configuration
*/
private static final String PROVIDER = "Provider.";
public static final String PROVIDER_ENABLE = TestSuiteConfig.SDCCC + PROVIDER + Constants.ENABLE_SETTING_POSTFIX;
public static final String PROVIDER_DEVICE_EPR = TestSuiteConfig.SDCCC + PROVIDER + Constants.DEVICE_EPR_POSTFIX;

private TestProviderConfig() {}
Expand Down

0 comments on commit 513334f

Please sign in to comment.