Skip to content

Commit

Permalink
Continued merging process.
Browse files Browse the repository at this point in the history
  • Loading branch information
pritchardn committed Nov 4, 2021
1 parent 1b22c4c commit 310b431
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion daliuge-engine/dlg/drop.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"""
Module containing the core DROP classes.
"""
import pickle
from abc import ABCMeta, abstractmethod
import base64
import collections
Expand Down
4 changes: 2 additions & 2 deletions daliuge-engine/test/apps/test_crc.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import unittest

from dlg import droputils
from dlg.apps.crc import CRCApp, crc32c
from dlg.apps.crc import CRCApp, crc32
from dlg.apps.dynlib import DynlibApp
from dlg.drop import FileDROP, InMemoryDROP

Expand Down Expand Up @@ -72,7 +72,7 @@ def test_with_dynlib(self):

# The crc32 is the same used by the CRCApp, see the imports
data = os.urandom(1024)
crc = str(crc32c(data)).encode('utf8')
crc = str(crc32(data)).encode('utf8')

# Execute the graph and check results
with droputils.DROPWaiterCtx(self, (e, h, j), 5):
Expand Down

0 comments on commit 310b431

Please sign in to comment.