Commit 6a6bd6117b572083b5f9950c413d570c8e1c32e4
Committed by
Andrew Shvayka
1 parent
16e1340c
Fix for test
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -132,7 +132,7 @@ public abstract class AbstractMqttProvisionJsonDeviceTest extends AbstractMqttIn |
132 | 132 | |
133 | 133 | Assert.assertEquals(deviceCredentials.getCredentialsType().name(), response.get("credentialsType").getAsString()); |
134 | 134 | Assert.assertEquals(deviceCredentials.getCredentialsType().name(), "ACCESS_TOKEN"); |
135 | - Assert.assertEquals(deviceCredentials.getCredentialsValue(), "test_token"); | |
135 | + Assert.assertEquals(deviceCredentials.getCredentialsId(), "test_token"); | |
136 | 136 | Assert.assertEquals(ProvisionResponseStatus.SUCCESS.name(), response.get("status").getAsString()); |
137 | 137 | } |
138 | 138 | ... | ... |