File tree 1 file changed +4
-4
lines changed
samples/document-snippets/tests
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ const uuid = require(`uuid`);
21
21
const Bigtable = require ( `@google-cloud/bigtable` ) ;
22
22
const bigtable = new Bigtable ( ) ;
23
23
24
- const INSTANCE_ID = `nodejs-bigtable-samples -${ uuid . v4 ( ) } ` . substr ( 0 , 30 ) ; // Bigtable naming rules
25
- const CLUSTER_ID = `nodejs-bigtable-samples -${ uuid . v4 ( ) } ` . substr ( 0 , 30 ) ; // Bigtable naming rules
26
- const TABLE_ID = `nodejs-bigtable-samples -${ uuid . v4 ( ) } ` . substr ( 0 , 30 ) ; // Bigtable naming rules
27
- const FAMILY_ID = `nodejs-bigtable-samples- ${ uuid . v4 ( ) } ` . substr ( 0 , 30 ) ; // Bigtable naming rules
24
+ const INSTANCE_ID = `sample-instance -${ uuid . v4 ( ) } ` . substr ( 0 , 30 ) ; // Bigtable naming rules
25
+ const CLUSTER_ID = `sample-cluster -${ uuid . v4 ( ) } ` . substr ( 0 , 30 ) ; // Bigtable naming rules
26
+ const TABLE_ID = `sample-table -${ uuid . v4 ( ) } ` . substr ( 0 , 30 ) ; // Bigtable naming rules
27
+ const FAMILY_ID = `sample-family- ${ uuid . v4 ( ) } ` . substr ( 0 , 10 ) ; // Bigtable naming rules
28
28
29
29
const familySnippets = require ( '../family.js' ) ;
30
30
You can’t perform that action at this time.
0 commit comments