Explorar o código

HUE-8089 [editor] Update last part of the test

Romain Rigaux %!s(int64=7) %!d(string=hai) anos
pai
achega
7a06d02
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      desktop/core/src/desktop/lib/test_export_csvxls.py

+ 1 - 1
desktop/core/src/desktop/lib/test_export_csvxls.py

@@ -36,7 +36,7 @@ def test_export_csv():
   response = make_response(generator, "csv", "foo")
   assert_equal("application/csv", response["content-type"])
   content = ''.join(response.streaming_content)
-  assert_equal('x,y\r\n1,2\r\n3,4\r\n"5,6",7\r\nNULL,NULL\r\n', content)
+  assert_equal('x,y\r\n1,2\r\n3,4\r\n"5,6",7\r\nNULL,NULL\r\nhttp://gethue.com,http://gethue.com\r\n', content)
   assert_equal('attachment; filename="foo.csv"', response["content-disposition"])