Skip to content

Commit

Permalink
[irods#42] Keeping name consistent between tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-i-am012 committed Aug 2, 2024
1 parent 5db0ed6 commit 0a0ee65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/example/Operations/RuleOperationsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ public class RuleOperationsTest {

@Before
public void setup() {
String address = "52.91.145.195";
String host = "52.91.145.195";
String port = "8888";
String version = "0.3.0";

String baseUrl = "http://" + address + ":" + port + "/irods-http-api/" + version;
String baseUrl = "http://" + host + ":" + port + "/irods-http-api/" + version;

// Create client
rods = new Wrapper(baseUrl, "rods", "rods");
Expand Down

0 comments on commit 0a0ee65

Please sign in to comment.