Skip to content

Commit

Permalink
Java V2 Removes an outdated code example named GetEndpointURL.java fr…
Browse files Browse the repository at this point in the history
…om MediaConvert (#7092)
  • Loading branch information
scmacdon authored Nov 20, 2024
1 parent b6fab98 commit 529c7f0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 71 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// SPDX-License-Identifier: Apache-2.0

import com.example.mediaconvert.CreateJob;
import com.example.mediaconvert.GetEndpointURL;
import com.example.mediaconvert.GetJob;
import com.example.mediaconvert.ListJobs;
import com.google.gson.Gson;
Expand Down Expand Up @@ -80,22 +79,14 @@ public void CreateJob() {
@Test
@Tag("IntegrationTest")
@Order(2)
public void GetEndpointURL() {
assertDoesNotThrow(() -> GetEndpointURL.getEndpoint(mc));
System.out.println("Test 2 passed");
}

@Test
@Tag("IntegrationTest")
@Order(3)
public void ListJobs() {
assertDoesNotThrow(() -> ListJobs.listCompleteJobs(mc));
System.out.println("Test 3 passed");
}

@Test
@Tag("IntegrationTest")
@Order(4)
@Order(3)
public void GetJob() {
assertDoesNotThrow(() -> GetJob.getSpecificJob(mc, jobId));
System.out.println("Test 4 passed");
Expand Down

0 comments on commit 529c7f0

Please sign in to comment.