-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to fix non-determinism in tests (#856)
* Try to fix non-determinism in tests * Rename migration
- Loading branch information
1 parent
ba09889
commit 40e134d
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
cadasta/resources/migrations/0004_add_ordering_for_resources.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.9.6 on 2016-10-20 16:48 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('resources', '0003_spatialresource'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='resource', | ||
options={'ordering': ('name',)}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='spatialresource', | ||
options={'ordering': ('name',)}, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters