| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -62,7 +62,7 @@ def _get_instance(spanner_client: client.Client) -> instance.Instance: | |||
| 62 | 62 | # The emulator has one default config. | |
| 63 | 63 | config = list(spanner_client.list_instance_configs())[0] | |
| 64 | 64 | inst = spanner_client.instance( | |
| 65 | - 'qwiklabs-spanner-instance-name', configuration_name=config.name) | ||
| 65 | + 'spanner-instance-name', configuration_name=config.name) | ||
| 66 | 66 | inst.create().result() | |
| 67 | 67 | return inst | |
| 68 | 68 | ||
@@ -78,7 +78,7 @@ def _migrate_database_at_connection(connection: spanner_orm.SpannerConnection, | |||
| 78 | 78 | def _database_id() -> str: | |
| 79 | 79 | """Returns a new database ID that's unlikely to conflict with any other.""" | |
| 80 | 80 | random_string = str(uuid.uuid4()).split('-')[0] | |
| 81 | - return 'qwiklabs-db-' + random_string | ||
| 81 | + return 'spanner-db-' + random_string | ||
| 82 | 82 | ||
| 83 | 83 | ||
| 84 | 84 | class TestCase(unittest.TestCase): | |
| Back | FazBrowse Home | New Git URL |
0 commit comments