You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2015/02/11 22:02:37 UTC

accumulo git commit: ACCUMULO-1515 Fix broken ExamplesIT by readme name change.

Repository: accumulo
Updated Branches:
  refs/heads/master 16a5fcbfd -> 5663fe422


ACCUMULO-1515 Fix broken ExamplesIT by readme name change.


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/5663fe42
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/5663fe42
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/5663fe42

Branch: refs/heads/master
Commit: 5663fe422cc3af08637a202e9f937a106e649a3b
Parents: 16a5fcb
Author: Josh Elser <jo...@gmail.com>
Authored: Wed Feb 11 16:02:08 2015 -0500
Committer: Josh Elser <jo...@gmail.com>
Committed: Wed Feb 11 16:02:08 2015 -0500

----------------------------------------------------------------------
 .../test/java/org/apache/accumulo/test/functional/ExamplesIT.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/5663fe42/test/src/test/java/org/apache/accumulo/test/functional/ExamplesIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/functional/ExamplesIT.java b/test/src/test/java/org/apache/accumulo/test/functional/ExamplesIT.java
index 6a3e7d1..6c81369 100644
--- a/test/src/test/java/org/apache/accumulo/test/functional/ExamplesIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/functional/ExamplesIT.java
@@ -381,7 +381,7 @@ public class ExamplesIT extends AccumuloClusterIT {
     SummingCombiner.setColumns(is, Collections.singletonList(new IteratorSetting.Column(new Text("count"))));
     SummingCombiner.setEncodingType(is, SummingCombiner.Type.STRING);
     c.tableOperations().attachIterator(tableName, is);
-    fs.copyFromLocalFile(new Path(new Path(System.getProperty("user.dir")).getParent(), "README"), new Path(dir + "/tmp/wc/README"));
+    fs.copyFromLocalFile(new Path(new Path(System.getProperty("user.dir")).getParent(), "README.md"), new Path(dir + "/tmp/wc/README.md"));
     goodExec(WordCount.class, "-i", instance, "-u", user, "-p", passwd, "-z", keepers, "--input", dir + "/tmp/wc", "-t", tableName);
   }