Updated Branches: refs/heads/sqoop2 1b2441d21 -> 74ebecb7c
SQOOP-1131. New test added in SQOOP-1121 is using unsupported API in Hadoop 100 (Jarek Jarcec Cecho via Hari Shreedharan) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/74ebecb7 Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/74ebecb7 Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/74ebecb7 Branch: refs/heads/sqoop2 Commit: 74ebecb7ce61dbeb98f5b6541992afb69883b75d Parents: 1b2441d Author: Hari Shreedharan <[email protected]> Authored: Wed Jul 10 16:30:39 2013 -0700 Committer: Hari Shreedharan <[email protected]> Committed: Wed Jul 10 16:30:39 2013 -0700 ---------------------------------------------------------------------- .../test/java/org/apache/sqoop/job/mr/TestConfigurationUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/74ebecb7/execution/mapreduce/src/test/java/org/apache/sqoop/job/mr/TestConfigurationUtils.java ---------------------------------------------------------------------- diff --git a/execution/mapreduce/src/test/java/org/apache/sqoop/job/mr/TestConfigurationUtils.java b/execution/mapreduce/src/test/java/org/apache/sqoop/job/mr/TestConfigurationUtils.java index 5e2d099..0ded500 100644 --- a/execution/mapreduce/src/test/java/org/apache/sqoop/job/mr/TestConfigurationUtils.java +++ b/execution/mapreduce/src/test/java/org/apache/sqoop/job/mr/TestConfigurationUtils.java @@ -51,7 +51,7 @@ public class TestConfigurationUtils { } public void setUpJob() throws Exception { - job = Job.getInstance(); + job = new Job(); } public void setUpJobConf() throws Exception {
