Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjroach committed Oct 26, 2023
1 parent 64c0d30 commit dcf28d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,13 @@ class GraphQLLazySubscribeInstrumentationTest {

companion object {

lateinit var instrumentationRunId: String
val instrumentationRunId by lazy {
UUID.randomUUID().toString()
}

@JvmStatic
@BeforeClass
fun setUp() {
instrumentationRunId = UUID.randomUUID().toString()
val context = ApplicationProvider.getApplicationContext<Context>()
val config = AmplifyConfiguration.fromConfigFile(context, R.raw.amplifyconfigurationlazy)
Amplify.addPlugin(AWSApiPlugin())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class StorageCanaryTest {
fun uploadFile() {
val latch = CountDownLatch(1)
val file = createFile(1)
val fileKey = "ExampleKey"
val fileKey = UUID.randomUUID().toString()
Amplify.Storage.uploadFile(
fileKey,
file,
Expand Down

0 comments on commit dcf28d3

Please sign in to comment.