Skip to content

Commit

Permalink
Merge pull request #4484 from AnalyticalGraphicsInc/fix-lineend-specs
Browse files Browse the repository at this point in the history
Fix specs by ignoring line endings
  • Loading branch information
mramato authored Oct 20, 2016
2 parents bcd4503 + 6bedc81 commit b75c311
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Specs/Core/loadWithXhrSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ defineSuite([
return loadWithXhr({
url : 'Data/Models/Box/ReadMe.txt'
}).then(function(result) {
expect(result).toBe('CesiumBoxTest-NoTechnique.gltf is a modified glTF that has techniques, shaders & programs removed.\n');
expect(result).toBe('CesiumBoxTest-NoTechnique.gltf is a modified glTF that has techniques, shaders & programs removed.');
});
});

Expand All @@ -197,7 +197,7 @@ defineSuite([
url : 'Data/Models/Box/ReadMe.txt',
responseType : 'text'
}).then(function(result) {
expect(result).toBe('CesiumBoxTest-NoTechnique.gltf is a modified glTF that has techniques, shaders & programs removed.\n');
expect(result).toBe('CesiumBoxTest-NoTechnique.gltf is a modified glTF that has techniques, shaders & programs removed.');
});
});

Expand Down
2 changes: 1 addition & 1 deletion Specs/Data/Models/Box/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CesiumBoxTest-NoTechnique.gltf is a modified glTF that has techniques, shaders & programs removed.
CesiumBoxTest-NoTechnique.gltf is a modified glTF that has techniques, shaders & programs removed.

0 comments on commit b75c311

Please sign in to comment.