Skip to content

Commit

Permalink
fixing pipeline issues
Browse files Browse the repository at this point in the history
  • Loading branch information
eboyd23 committed Jul 6, 2020
1 parent 9cffa72 commit 773e428
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/tables/azure-data-tables/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Licensed under the MIT License.
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-test</artifactId>
<version>1.3.0</version> <!-- {x-version-update;com.azure:azure-core-test;dependency} -->
<version>1.3.1</version> <!-- {x-version-update;com.azure:azure-core-test;dependency} -->
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import com.azure.data.tables.implementation.models.QueryOptions;
import com.azure.data.tables.implementation.models.ResponseFormat;
import com.azure.data.tables.implementation.models.TableProperties;
import com.azure.data.tables.implementation.models.TableResponseProperties;
import com.azure.data.tables.implementation.models.TableServiceErrorException;
import com.azure.storage.common.implementation.connectionstring.StorageAuthenticationSettings;
import com.azure.storage.common.implementation.connectionstring.StorageConnectionString;
Expand Down Expand Up @@ -195,7 +196,7 @@ void queryTable() {
Assertions.assertEquals(expectedStatusCode, response.getStatusCode());
Assertions.assertNotNull(response.getValue(), "Expected there to be a result.");

var results = response.getValue().getValue();
List<TableResponseProperties> results = response.getValue().getValue();

Assertions.assertNotNull(results, "Expected there to be a set of items.");
Assertions.assertEquals(2, results.size());
Expand Down

0 comments on commit 773e428

Please sign in to comment.