Changeset 1473 for pyamf/trunk/pyamf/tests
- Timestamp:
- 07/03/08 22:06:27 (6 months ago)
- Files:
-
- 1 modified
-
pyamf/trunk/pyamf/tests/remoting/test_client.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyamf/trunk/pyamf/tests/remoting/test_client.py
r1432 r1473 5 5 6 6 """ 7 Test for Remoting client.7 Tests for Remoting client. 8 8 9 9 @since: 0.1.0 … … 371 371 372 372 dc.tc = self 373 dc.expected_headers = {'Content-Type': 'application/x-amf'} 373 dc.expected_headers = {'Content-Type': remoting.CONTENT_TYPE, 374 'User-Agent': client.DEFAULT_USER_AGENT} 374 375 375 376 service = gw.getService('baz', auto_execute=False) … … 409 410 410 411 dc.tc = self 411 dc.expected_headers = {'Content-Type': 'application/x-amf'} 412 dc.expected_headers = {'Content-Type': 'application/x-amf', 413 'User-Agent': client.DEFAULT_USER_AGENT} 412 414 413 415 baz = gw.getService('baz', auto_execute=False)
