From ad5ba1a72ef90c4327e3eb3ee133fbf87e181638 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 14 Jul 2009 21:20:16 +0000 Subject: [PATCH] Fixed spelling mistake in Ajax tests. --- test/unit/ajax.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 92d0739..942f9be 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -923,8 +923,8 @@ test("jQuery.ajax - Etag support", function() { ifModified: true, success: function(data, status) { if ( data === "FAIL" ) { - ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Matches')."); - ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Matches')."); + ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match')."); + ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match')."); } else { equals(status, "notmodified"); ok(data == null, "response body should be empty") -- 1.7.10.4