aboutsummaryrefslogtreecommitdiffstats
path: root/test/testabilityPatch.js
diff options
context:
space:
mode:
authorMisko Hevery2010-01-23 15:54:58 -0800
committerMisko Hevery2010-01-23 15:54:58 -0800
commit4460328bc1173f5d97fb4ff54edc041968486fce (patch)
tree40e18a175f7f1ae104aa56347fe5038526374ed8 /test/testabilityPatch.js
parente41ee88ef85986dcd0fea23fefcc57d89cee5c0b (diff)
downloadangular.js-4460328bc1173f5d97fb4ff54edc041968486fce.tar.bz2
lots of cleanup to get it ready for OS
Diffstat (limited to 'test/testabilityPatch.js')
-rw-r--r--test/testabilityPatch.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testabilityPatch.js b/test/testabilityPatch.js
index 78ffd380..8fac7598 100644
--- a/test/testabilityPatch.js
+++ b/test/testabilityPatch.js
@@ -35,13 +35,13 @@ function report(reportTest){
});
}
-MockUrlWatcher = function() {
+MockLocation = function() {
this.url = "http://server";
};
-MockUrlWatcher.prototype.getUrl = function(){
+MockLocation.prototype.get = function(){
return this.url;
};
-MockUrlWatcher.prototype.setUrl = function(url){
+MockLocation.prototype.set = function(url){
this.url = url;
};
@@ -96,7 +96,7 @@ function decode64(base64){
return fromJson(Base64.decode(base64));
}
-Angular.prototype.configureJQueryPlugins();
+configureJQueryPlugins();
function assertHidden(node) {
var display = node.css('display');