diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-16 01:20:48 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-16 01:20:48 (GMT) |
commit | aca8ddb97886b3eaf4c3618ce6774f2b56997604 (patch) | |
tree | 9edb77fd6f1c254230c6aee9f5cc8a639cbed638 /tests/auto/declarative | |
parent | 3b7bcb72857c8c73435b801536c0d5330d3df469 (diff) | |
download | Qt-aca8ddb97886b3eaf4c3618ce6774f2b56997604.zip Qt-aca8ddb97886b3eaf4c3618ce6774f2b56997604.tar.gz Qt-aca8ddb97886b3eaf4c3618ce6774f2b56997604.tar.bz2 |
Fix test case
Diffstat (limited to 'tests/auto/declarative')
-rw-r--r-- | tests/auto/declarative/qmlxmlhttprequest/data/getAllResponseHeaders.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qmlxmlhttprequest/data/getAllResponseHeaders.qml b/tests/auto/declarative/qmlxmlhttprequest/data/getAllResponseHeaders.qml index 02a8083..8d67fad 100644 --- a/tests/auto/declarative/qmlxmlhttprequest/data/getAllResponseHeaders.qml +++ b/tests/auto/declarative/qmlxmlhttprequest/data/getAllResponseHeaders.qml @@ -42,7 +42,7 @@ QtObject { openedException = true; } - var headers = "content-type: text/html; charset=UTF-8\r\ntest-header: TestValue\r\nmultitest-header: TestValue, SecondTestValue\r\ncontent-length: 11"; + var headers = "connection: close\r\ncontent-type: text/html; charset=UTF-8\r\ntest-header: TestValue\r\nmultitest-header: TestValue, SecondTestValue\r\ncontent-length: 11"; // Test to the end x.onreadystatechange = function() { |