Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
edsilv committed Aug 14, 2015
1 parent 42124aa commit 01ac133
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/biocrats.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var manifest, sequence;

describe('#loads', function() {
it('loads successfully', function (done) {
manifesto.load(manifests.biocrats, function(data) {
manifesto.loadManifest(manifests.biocrats).then(function(data) {
manifest = manifesto.create(data);
done();
});
Expand Down
2 changes: 1 addition & 1 deletion test/cardiganshire.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var manifest, sequence;

describe('#loadsCardiganshire', function() {
it('loads successfully', function (done) {
manifesto.load(manifests.cardiganshire, function(data) {
manifesto.loadManifest(manifests.cardiganshire).then(function(data) {
manifest = manifesto.create(data, {locale: "cy-GB"});
done();
});
Expand Down
2 changes: 1 addition & 1 deletion test/pseudoalbert.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ shared.serve();

describe('#loads', function() {
it('loads successfully', function (done) {
manifesto.load(manifests.pseudoalbert, function(data) {
manifesto.loadManifest(manifests.pseudoalbert).then(function(data) {
manifest = manifesto.create(data);
done();
});
Expand Down
2 changes: 1 addition & 1 deletion test/storyofwellcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var manifest, sequence, element;

describe('#loadsStoryOfWellcome', function() {
it('loads successfully', function (done) {
manifesto.load(manifests.storyofwellcome, function(data) {
manifesto.loadManifest(manifests.storyofwellcome).then(function(data) {
manifest = manifesto.create(data);
done();
});
Expand Down

0 comments on commit 01ac133

Please sign in to comment.