Skip to content

Commit

Permalink
[rm_skycoin] refs skycoin#42. Fix merge issue. Update tests due to ne…
Browse files Browse the repository at this point in the history
…w changes.
  • Loading branch information
stdevEclipse committed Jul 18, 2018
1 parent da8f3d1 commit 2ae8049
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@ FULL_PATH_LIB = $(PWD)/$(BUILDLIBC_DIR)
LIB_FILES = $(shell find $(SKYCOIN_DIR)/lib/cgo -type f -name "*.go")
SRC_FILES = $(shell find $(SKYCOIN_DIR)/src -type f -name "*.go")
SWIG_FILES = $(shell find $(LIBSWIG_DIR) -type f -name "*.i")
<<<<<<< HEAD
HEADER_FILES = $(shell find $(INCLUDE_DIR) -type f -name "*.h")
=======
HEADER_FILES = $(shell find $(SKYCOIN_DIR)/include -type f -name "*.h")
>>>>>>> skycoin/develop

ifeq ($(shell uname -s),Linux)
TEMP_DIR = tmp
Expand Down
4 changes: 2 additions & 2 deletions tests/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_cipherAddress():
address2 = skycoin.cipher__Address()
error = skycoin.SKY_cipher_BitcoinAddressFromBytes(bytes, address2)
assert error == 0
assert address.isEqual(address2)
assert address == address2



Expand Down Expand Up @@ -96,7 +96,7 @@ def test_GenerateKeyPairs():
address2 = skycoin.cipher__Address()
error = skycoin.SKY_cipher_DecodeBase58Address(address_string, address2)
assert error == 0
assert address.isEqual(address2)
assert address == address2


def test_GenerateDeterministicKeyPairs():
Expand Down

0 comments on commit 2ae8049

Please sign in to comment.