We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
python setup.py nosetests fail. The problem has been introduced on dcf62b4
This patch fixes the problem.
diff --git a/test_classy/test_endpoints.py b/test_classy/test_endpoints.py index 1584c10..482e7d6 100644 --- a/test_classy/test_endpoints.py +++ b/test_classy/test_endpoints.py @@ -44,4 +44,4 @@ def test_variable_route_base(): def test_variable_route_base_with_local_route_var(): client = app.test_client() resp = client.get('/var-base-route/bar/local/baz') - eq_(resp.data, "bar baz") + eq_(resp.data, b"bar baz")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
python setup.py nosetests fail. The problem has been introduced on dcf62b4
This patch fixes the problem.
The text was updated successfully, but these errors were encountered: