THRIFT-2823:grunt tests failing
Client: JS
Patch: Randy Abernethy
The lib/js/test/build.xml was copying thrift.js incorrectly.
diff --git a/lib/js/test/build.xml b/lib/js/test/build.xml
index 74ac0c4..6083cd1 100755
--- a/lib/js/test/build.xml
+++ b/lib/js/test/build.xml
@@ -100,7 +100,7 @@
<get src="http://code.jquery.com/qunit/qunit-1.5.0.js" dest="${build}/js/lib/qunit.js" usetimestamp="true"/>
<get src="http://code.jquery.com/qunit/qunit-1.5.0.css" dest="${build}/js/lib/qunit.css" usetimestamp="true"/>
<!-- js-test-driver has issues with relative path...so we need a copy -->
- <copy file="../src/thrift.js" todir="${build}/js/thrift.js"/>
+ <copy file="../src/thrift.js" todir="${build}/js"/>
</target>
<target name="compile" description="compile the test suite" depends="init, generate, resolve">