Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tekezo committed Jul 9, 2017
1 parent 3b304d0 commit 7b84ee1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/src/manipulator_conditions/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ TEST_CASE("manipulator.frontmost_application") {

// frontmost_application_not
manipulator_environment.get_frontmost_application().set_bundle_identifier("com.googlecode.iterm2");
manipulator_environment.get_frontmost_application().set_bundle_identifier("/Applications/iTerm.app");
REQUIRE(helper.get_condition_manager().is_fulfilled(manipulator_environment) == true);
manipulator_environment.get_frontmost_application().set_bundle_identifier("/Users/tekezo/Applications/iTerm.app");
manipulator_environment.get_frontmost_application().set_file_path("/Applications/iTerm.app");
REQUIRE(helper.get_condition_manager().is_fulfilled(manipulator_environment) == true);
manipulator_environment.get_frontmost_application().set_file_path("/Users/tekezo/Applications/iTerm.app");
REQUIRE(helper.get_condition_manager().is_fulfilled(manipulator_environment) == false);
}

int main(int argc, char* const argv[]) {
Expand Down

0 comments on commit 7b84ee1

Please sign in to comment.