Skip to content

Commit

Permalink
update renamed test
Browse files Browse the repository at this point in the history
  • Loading branch information
ptone committed Jul 12, 2012
1 parent 8931fd4 commit bf3fbcc
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/regressiontests/localflavor_regress/au/models.py
Expand Up @@ -11,4 +11,4 @@ class AustralianPlace(models.Model):
name = models.CharField(max_length=20)

class Meta:
app_label = 'localflavor'
app_label = 'localflavor_regress'
2 changes: 1 addition & 1 deletion tests/regressiontests/localflavor_regress/mk/models.py
Expand Up @@ -12,4 +12,4 @@ class MKPerson(models.Model):
municipality_req = MKMunicipalityField(blank = False)

class Meta:
app_label = 'localflavor'
app_label = 'localflavor_regress'
2 changes: 1 addition & 1 deletion tests/regressiontests/localflavor_regress/mx/models.py
Expand Up @@ -10,4 +10,4 @@ class MXPersonProfile(models.Model):
zip_code = MXZipCodeField()

class Meta:
app_label = 'localflavor'
app_label = 'localflavor_regress'
2 changes: 1 addition & 1 deletion tests/regressiontests/localflavor_regress/us/models.py
Expand Up @@ -12,4 +12,4 @@ class USPlace(models.Model):
name = models.CharField(max_length=20)

class Meta:
app_label = 'localflavor'
app_label = 'localflavor_regress'
10 changes: 5 additions & 5 deletions tests/regressiontests/syndication_regress/fixtures/feeddata.json
@@ -1,38 +1,38 @@
[
{
"model": "syndication.entry",
"model": "syndication_regress.entry",
"pk": 1,
"fields": {
"title": "My first entry",
"date": "1850-01-01 12:30:00"
}
},
{
"model": "syndication.entry",
"model": "syndication_regress.entry",
"pk": 2,
"fields": {
"title": "My second entry",
"date": "2008-01-02 12:30:00"
}
},
{
"model": "syndication.entry",
"model": "syndication_regress.entry",
"pk": 3,
"fields": {
"title": "My third entry",
"date": "2008-01-02 13:30:00"
}
},
{
"model": "syndication.entry",
"model": "syndication_regress.entry",
"pk": 4,
"fields": {
"title": "A & B < C > D",
"date": "2008-01-03 13:30:00"
}
},
{
"model": "syndication.article",
"model": "syndication_regress.article",
"pk": 1,
"fields": {
"title": "My first article",
Expand Down
2 changes: 1 addition & 1 deletion tests/regressiontests/syndication_regress/tests.py
Expand Up @@ -35,7 +35,7 @@ class SyndicationFeedTest(FeedTestCase):
"""
Tests for the high-level syndication feed framework.
"""
urls = 'regressiontests.syndication.urls'
urls = 'regressiontests.syndication_regress.urls'

def test_rss2_feed(self):
"""
Expand Down

0 comments on commit bf3fbcc

Please sign in to comment.