From 0c41649927fe66913e2e3168f69e671bf7199987 Mon Sep 17 00:00:00 2001
From: lutoff <lutoff@localhost>
Date: Wed, 04 Apr 2007 07:46:18 +0000
Subject: [PATCH] Fix CLI consistency issues: 1407 1408 1410 1411 1412 1413 1414 1416 1417 1418 1419 1420 1421
---
opends/tests/unit-tests-testng/src/server/org/opends/server/tools/LDAPModifyTestCase.java | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/tools/LDAPModifyTestCase.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/tools/LDAPModifyTestCase.java
index b0b1b5c..a9333b4 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/tools/LDAPModifyTestCase.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/tools/LDAPModifyTestCase.java
@@ -847,7 +847,7 @@
/**
- * Tests a simple modify operation using the --noop client-side option.
+ * Tests a simple modify operation using the --dry-run client-side option.
*
* @throws Exception If an unexpected problem occurs.
*/
@@ -863,7 +863,7 @@
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
"-D", "cn=Directory Manager",
"-w", "password",
- "--noop",
+ "--dry-run",
"-f", modifyFilePath
};
@@ -873,7 +873,7 @@
/**
- * Tests a simple add operation using the --noop client-side option.
+ * Tests a simple add operation using the --dry-run client-side option.
*
* @throws Exception If an unexpected problem occurs.
*/
@@ -896,7 +896,7 @@
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
"-D", "cn=Directory Manager",
"-w", "password",
- "--noop",
+ "--dry-run",
"-f", path
};
@@ -906,7 +906,7 @@
/**
- * Tests a simple delete operation using the --noop client-side option.
+ * Tests a simple delete operation using the --dry-run client-side option.
*
* @throws Exception If an unexpected problem occurs.
*/
@@ -926,7 +926,7 @@
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
"-D", "cn=Directory Manager",
"-w", "password",
- "--noop",
+ "--dry-run",
"-f", path
};
@@ -936,7 +936,7 @@
/**
- * Tests a simple modify DN operation using the --noop client-side option.
+ * Tests a simple modify DN operation using the --dry-run client-side option.
*
* @throws Exception If an unexpected problem occurs.
*/
@@ -958,7 +958,7 @@
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
"-D", "cn=Directory Manager",
"-w", "password",
- "--noop",
+ "--dry-run",
"-f", path
};
--
Gitblit v1.10.0