Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dacry committed Jun 12, 2014
1 parent fd78f9a commit b130da5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -96,7 +96,7 @@ public function testGenerateSuggestionsWithPropertyList() {
->with( $this->equalTo( $properties ) )
->will( $this->returnValue( array( 'foo' ) ) );

$result1 = $this->suggestionGenerator->generateSuggestionsByPropertyList( array( 'P12', 'p13', '14' ) , 100, 0.0 );
$result1 = $this->suggestionGenerator->generateSuggestionsByPropertyList( array( 'P12', 'p13', 'P14' ) , 100, 0.0 );
$this->assertEquals( $result1, array( 'foo' ) );

}
Expand Down

0 comments on commit b130da5

Please sign in to comment.