Skip to content

Commit

Permalink
Change internal RGs API version back to 0.0.1 (#839)
Browse files Browse the repository at this point in the history
* Change internal RGs API version back to 0.0.1

* Fix tests
  • Loading branch information
alexweininger authored Apr 15, 2024
1 parent 04ba04b commit 7b3499c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/compatibility/AzureResourceGroupsExtensionApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { AzureSubscription } from 'api/src';
import { Disposable, TreeView } from 'vscode';

export class InternalAzureResourceGroupsExtensionApi implements AzureHostExtensionApi, AzureResourceGroupsExtensionApi {
public static apiVersion = '0.0.2';
public static apiVersion = '0.0.1';

#appResourceTree: AzExtTreeDataProvider;
#appResourceTreeView: TreeView<unknown>;
Expand Down
2 changes: 1 addition & 1 deletion test/api/v1.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ suite('v1 API tests', async () => {

assert.ok(apiProvider, 'API provider is undefined');

const v1Api = apiProvider.getApi('0.0.2', {
const v1Api = apiProvider.getApi('0.0.1', {
extensionId: 'ms-azuretools.vscode-azureresourcegroups-tests',
});

Expand Down

0 comments on commit 7b3499c

Please sign in to comment.