Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test fail on python 3.4.x #119

Open
matthiasreisser opened this issue Nov 23, 2017 · 0 comments
Open

test fail on python 3.4.x #119

matthiasreisser opened this issue Nov 23, 2017 · 0 comments

Comments

@matthiasreisser
Copy link
Contributor

 FAILURES
 test_get_partial_chain 

    def test_get_partial_chain():
        def f(a, b):
            return a+b
        g = partial(f, b=3)
        h = partial(g, a=2)

        if sys.version_info < (3, 0):  # Python 2.X
            assert [f, g, h] == get_partial_chain(h)
        else: # Python 3.X
>           base, part = get_partial_chain(h)
E           ValueError: too many values to unpack (expected 2)

artemis/general/test_functional.py:72: ValueError
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant