Skip to content

Commit 455a276

Browse files
committed
updating to latest data
1 parent d3b0537 commit 455a276

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

test/fixtures/corpus/lingllama-communitycorpus.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"_id": "corpus",
3-
"_rev": "42-1db8fbef7b9144f7c984786a9a221878",
3+
"_rev": "50-652a20322e696773482b140780fd6a99",
44
"title": "Community Corpus",
55
"titleAsUrl": "community_corpus",
66
"description": "This is a corpus which is editable by anyone in the LingSync community. Anyone can add comments to data, import data, experiment and help suggestions for other community members.",

test/lib/corpora-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var config = require("config");
22
var expect = require("chai").expect;
33
var getAllCorpora = require("./../../lib/corpora").getAllCorpora;
44
var specIsRunningTooLong = 15000;
5-
var TOTAL_CORPORA_COUNT = 235;
5+
var TOTAL_CORPORA_COUNT = 236;
66

77
if (process.env.OFFLINE) {
88
TOTAL_CORPORA_COUNT = 2;

test/lib/corpus-spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ describe("corpus lib", function() {
9393

9494
getCorpusMask("lingllama-communitycorpus", done).then(function(mask) {
9595
expect(mask).to.be.defined;
96-
expect(mask._rev).to.deep.equal("42-1db8fbef7b9144f7c984786a9a221878");
96+
expect(mask._rev).to.deep.equal("50-652a20322e696773482b140780fd6a99");
9797
expect(mask.fieldDBtype).to.deep.equal("CorpusMask");
9898
expect(mask.dbname).to.deep.equal("lingllama-communitycorpus");
9999
expect(mask.url).to.not.contain(corpusConfig.auth);
100100
expect(mask.title).to.deep.equal("Community Corpus");
101101
expect(mask.titleAsUrl).to.deep.equal("community_corpus");
102102
expect(mask.description).to.deep.equal("This is a corpus which is editable by anyone in the LingSync community. Anyone can add comments to data, import data, experiment and help suggestions for other community members.");
103103
expect(mask.copyright).to.deep.equal("lingllama");
104-
expect(mask.fields.length).to.equal(4);
104+
expect(mask.fields.length).to.equal(18);
105105
// console.log(JSON.stringify(mask, null, 2));
106106
expect(mask.termsOfUse).to.be.defined;
107107
expect(mask.termsOfUse).to.contain("Sample: The materials included in this corpus are available");
@@ -287,7 +287,7 @@ describe("corpus lib", function() {
287287
throw err;
288288
}).then(function(mask) {
289289
expect(mask).to.be.defined;
290-
expect(mask._rev).to.deep.equal("42-1db8fbef7b9144f7c984786a9a221878");
290+
expect(mask._rev).to.deep.equal("50-652a20322e696773482b140780fd6a99");
291291
expect(mask.fieldDBtype).to.deep.equal("CorpusMask");
292292
expect(mask.dbname).to.deep.equal("lingllama-communitycorpus");
293293
expect(mask.title).to.deep.equal("Community Corpus");

0 commit comments

Comments
 (0)