Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update .codegen.json with commit hash of codegen and openapi spec #48

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "bd1adff", "specHash": "b2f7568", "version": "0.3.0" }
{ "engineHash": "3d3d072", "specHash": "2b40df9", "version": "0.3.0" }
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public FileMetadataManagerTests() {
client = new CommonsManager().GetDefaultClient();
}
[TestMethod]
public async System.Threading.Tasks.Task TestFileMetadata() {
public async System.Threading.Tasks.Task TestGlobalFileMetadata() {
FileFull file = await new CommonsManager().UploadNewFileAsync().ConfigureAwait(false);
Metadatas fileMetadata = await client.FileMetadata.GetFileMetadataAsync(fileId: file.Id).ConfigureAwait(false);
Assert.IsTrue(NullableUtils.Unwrap(fileMetadata.Entries).Count == 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public FolderMetadataManagerTests() {
client = new CommonsManager().GetDefaultClient();
}
[TestMethod]
public async System.Threading.Tasks.Task TestFolderMetadata() {
public async System.Threading.Tasks.Task TestGlobalFolderMetadata() {
FolderFull folder = await new CommonsManager().CreateNewFolderAsync().ConfigureAwait(false);
Metadatas folderMetadata = await client.FolderMetadata.GetFolderMetadataAsync(folderId: folder.Id).ConfigureAwait(false);
Assert.IsTrue(NullableUtils.Unwrap(folderMetadata.Entries).Count == 0);
Expand Down
Loading