浏览代码

Use compatability layer for user in test

master
David Winterbottom 12 年前
父节点
当前提交
568715b9ca
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      tests/unit/wishlist_tests.py

+ 3
- 1
tests/unit/wishlist_tests.py 查看文件

1
 from django.test import TestCase
1
 from django.test import TestCase
2
-from django.contrib.auth.models import User
3
 
2
 
4
 from oscar.apps.wishlists.models import WishList
3
 from oscar.apps.wishlists.models import WishList
4
+from oscar.core.compat import get_user_model
5
+
6
+User = get_user_model()
5
 
7
 
6
 
8
 
7
 class TestAWishlist(TestCase):
9
 class TestAWishlist(TestCase):

正在加载...
取消
保存