mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-09-19 09:02:41 +01:00
Refer to the Table API as Table in comments
The comments added by this branch alternated between Table and Tables when naming the API alongside SQL and Gremlin. TablesDB is left alone since that is the literal database name, as is the plural noun where it refers to actual tables.
This commit is contained in:
@@ -14,7 +14,7 @@ import {
|
||||
subscriptionId,
|
||||
} from "../fx";
|
||||
|
||||
// Tables API accounts store tables in a fixed "TablesDB" database, with each table as a container.
|
||||
// Table API accounts store tables in a fixed "TablesDB" database, with each table as a container.
|
||||
const databaseId = "TablesDB";
|
||||
const tableId = generateUniqueName("table");
|
||||
const partitionKey = "testpartition";
|
||||
@@ -56,7 +56,7 @@ test.describe("Tables account using connection string login", () => {
|
||||
accountName,
|
||||
);
|
||||
|
||||
// Tables sign data-plane requests client-side with the account key, so no encrypted token is issued.
|
||||
// Table accounts sign data-plane requests client-side with the account key, so no encrypted token is issued.
|
||||
const connectionString = connectionStrings.find((cs) => cs.type === "Table")?.connectionString;
|
||||
|
||||
await page.goto("https://localhost:1234/hostedExplorer.html");
|
||||
|
||||
Reference in New Issue
Block a user