Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
BaseFilter test requires a concrete model
  • Loading branch information
lovelydinosaur committed Jun 1, 2016
commit b5931940e1abc2ea186f85b57624b112837947b3
3 changes: 0 additions & 3 deletions tests/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ class BasicModel(RESTFrameworkModel):
class BaseFilterableItem(RESTFrameworkModel):
text = models.CharField(max_length=100)

class Meta:
abstract = True


class FilterableItem(BaseFilterableItem):
decimal = models.DecimalField(max_digits=4, decimal_places=2)
Expand Down