Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[HOT-FIX] files hot fix: create tests;
  • Loading branch information
opalczynski committed Sep 27, 2016
commit 4d0188ea1ef13375efdf65dfeaa2e97ae6a0a628
7 changes: 4 additions & 3 deletions tests/integration_test_data_objects.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# -*- coding: utf-8 -*-
from hashlib import md5

import requests
from syncano.models import Object
from tests.integration_test import InstanceMixin, IntegrationTest

try:
# python2
from StringIO import StringIO
except ImportError:
# python3
from io import StringIO

import requests
from syncano.models import Object
from tests.integration_test import InstanceMixin, IntegrationTest


class DataObjectFileTest(InstanceMixin, IntegrationTest):
Expand Down