Skip to content

Commit 98f9605

Browse files
adwsinghmtdowling
authored andcommitted
Fix integ tests
1 parent e490875 commit 98f9605

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

examples/restjson-client/src/it/java/software/amazon/smithy/java/example/ClientConfigTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,17 +132,17 @@ public PersonDirectoryClientWithDefaults(PersonDirectoryClientWithDefaults.Build
132132

133133
@Override
134134
public GetPersonImageOutput getPersonImage(GetPersonImageInput input, RequestOverrideConfig overrideConfig) {
135-
return call(input, GetPersonImage.instance(), overrideConfig).join();
135+
return call(input, GetPersonImage.instance(), overrideConfig);
136136
}
137137

138138
@Override
139139
public PutPersonOutput putPerson(PutPersonInput input, RequestOverrideConfig overrideConfig) {
140-
return call(input, PutPerson.instance(), overrideConfig).join();
140+
return call(input, PutPerson.instance(), overrideConfig);
141141
}
142142

143143
@Override
144144
public PutPersonImageOutput putPersonImage(PutPersonImageInput input, RequestOverrideConfig overrideConfig) {
145-
return call(input, PutPersonImage.instance(), overrideConfig).join();
145+
return call(input, PutPersonImage.instance(), overrideConfig);
146146
}
147147

148148
static PersonDirectoryClientWithDefaults.Builder builder() {

0 commit comments

Comments
 (0)