I changed the db schema and forgot to update the tests. Before we had a single integer, "max_funding_dollars" to represent how much an artist could ask for in funding. Now we have a (hacky) string that is a comma-separated list of values, like: 1,50-99,500,1000. All the tests that expect max_funding_dollars need to be fixed to work with this string instead. In some cases just removing the max_funding part will work, in others the test will need to be tweaked depending on what it's testing
I changed the db schema and forgot to update the tests. Before we had a single integer, "max_funding_dollars" to represent how much an artist could ask for in funding. Now we have a (hacky) string that is a comma-separated list of values, like: 1,50-99,500,1000. All the tests that expect max_funding_dollars need to be fixed to work with this string instead. In some cases just removing the max_funding part will work, in others the test will need to be tweaked depending on what it's testing