diff options
author | John Resig <jeresig@gmail.com> | 2009-07-14 21:20:16 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-07-14 21:20:16 +0000 |
commit | ad5ba1a72ef90c4327e3eb3ee133fbf87e181638 (patch) | |
tree | 563a6f56d07dbeed38f268d503c2ed7032db1ae4 /test | |
parent | c3c94823f27ee1e935586d46fd86f055f3a3d97d (diff) | |
download | jquery-ad5ba1a72ef90c4327e3eb3ee133fbf87e181638.tar.gz jquery-ad5ba1a72ef90c4327e3eb3ee133fbf87e181638.zip |
Fixed spelling mistake in Ajax tests.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/ajax.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 92d0739fa..942f9bee7 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") |