Skip to content

Commit

Permalink
Removing unnecesary ending ?>
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrice Luraine committed Jul 31, 2009
1 parent 4f37e74 commit 320cb5f
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 27 deletions.
4 changes: 1 addition & 3 deletions lib/limonade.php
Expand Up @@ -2174,6 +2174,4 @@ function file_list_dir($dir)



# ================================= END ================================== #

?>
# ================================= END ================================== #
2 changes: 0 additions & 2 deletions lib/limonade/abstract.php
Expand Up @@ -104,5 +104,3 @@ function before_exit()
{

}

?>
3 changes: 0 additions & 3 deletions lib/limonade/assertions.php
Expand Up @@ -167,6 +167,3 @@ function assert_response($response, $expected_status, $message)
// $this->_response_code = $matches[2];
// }
}


?>
4 changes: 0 additions & 4 deletions lib/limonade/tests.php
Expand Up @@ -337,7 +337,3 @@ function test_request($url, $method="GET", $include_header=false) {

return $response;
}



?>
2 changes: 0 additions & 2 deletions tests/all.php
Expand Up @@ -18,5 +18,3 @@
require $basedir."main.php";
require $basedir."functional.php";
end_test_suite();

?>
2 changes: 1 addition & 1 deletion tests/apps/00-empty.php
@@ -1 +1 @@
<?header('Content-type: text/html')?>
<?php header('Content-type: text/html');
3 changes: 1 addition & 2 deletions tests/helpers/show_request_uri.php
@@ -1,5 +1,4 @@
<?php
ini_set("display_errors", false);
require_once dirname(dirname(dirname(__FILE__))).'/lib/limonade.php';
echo request_uri()."\n";
?>
echo request_uri()."\n";
3 changes: 1 addition & 2 deletions tests/main.php
Expand Up @@ -167,5 +167,4 @@ function test_main_url_for()
assert_equal(url_for($ssite_url), $ssite_url);
}

end_test_case();
?>
end_test_case();
3 changes: 1 addition & 2 deletions tests/output.php
Expand Up @@ -25,5 +25,4 @@ function test_output_html()



end_test_case();
?>
end_test_case();
4 changes: 1 addition & 3 deletions tests/router.php
Expand Up @@ -225,6 +225,4 @@ function test_router_find_route()

}

end_test_case();

?>
end_test_case();
4 changes: 1 addition & 3 deletions tests/tests.php
Expand Up @@ -64,6 +64,4 @@ function test_test_assert_request()
assert_header($response, 'Content-Type', 'text/html');
}

end_test_case();

?>
end_test_case();

0 comments on commit 320cb5f

Please sign in to comment.