We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a80633 commit 1598a96Copy full SHA for 1598a96
bigquery/spec/bigquery_sample_spec.rb
@@ -28,10 +28,10 @@
28
@bucket = @storage.bucket ENV["GOOGLE_CLOUD_STORAGE_BUCKET"]
29
@tempfiles = []
30
31
- file_time = Time.now.to_i
32
- @file_name = "bigquery-test_#{file_time}"
33
- @dataset_name = "test_dataset_#{file_time}"
34
- @table_name = "test_table_#{file_time}"
+ current_time = Time.now.to_i
+ @file_name = "bigquery-test_#{current_time}"
+ @dataset_name = "test_dataset_#{current_time}"
+ @table_name = "test_table_#{current_time}"
35
36
@dataset = @bigquery.create_dataset @dataset_name
37
@table = @dataset.create_table @table_name do |schema|
0 commit comments