Skip to content
This repository was archived by the owner on May 18, 2024. It is now read-only.

Commit a94aa62

Browse files
authored
Merge pull request #3 from MGatner/master
Update for release to latest
2 parents 5624ae2 + 92af483 commit a94aa62

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 MGatner
3+
Copyright (c) 2019 CodeIgniter Foundation
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/tests/_support/bootstrap.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
define('WRITEPATH', realpath($paths->writableDirectory) . DIRECTORY_SEPARATOR);
2121
define('SYSTEMPATH', realpath($paths->systemDirectory) . DIRECTORY_SEPARATOR);
2222
define('CIPATH', realpath(SYSTEMPATH . '../') . DIRECTORY_SEPARATOR);
23+
define('SUPPORTPATH', realpath(ROOTPATH . 'tests/_support') . DIRECTORY_SEPARATOR);
2324

2425
// Define necessary project test path constants
25-
define('SUPPORTPATH', realpath(__DIR__) . DIRECTORY_SEPARATOR);
26-
define('TESTPATH', realpath(SUPPORTPATH . '../') . DIRECTORY_SEPARATOR);
26+
define('PROJECTSUPPORTPATH', realpath(__DIR__) . DIRECTORY_SEPARATOR);
27+
define('TESTPATH', realpath(PROJECTSUPPORTPATH . '../') . DIRECTORY_SEPARATOR);
2728

2829
// Set environment values that would otherwise stop the framework from functioning during tests.
2930
if (! isset($_SERVER['app.baseURL']))

0 commit comments

Comments
 (0)