~psivaa/ubuntu-test-cases/mod_php-fix

« back to all changes in this revision

Viewing changes to testsuites/lamp/test_mod_php/test.py

  • Committer: Parameswaran Sivatharman
  • Date: 2014-01-31 15:46:40 UTC
  • Revision ID: para.siva@canonical.com-20140131154640-h7me31ukden5kpff
mod_php change to follow the upstream changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
class LampTest(unittest.TestCase):
31
31
    def testModPhp(self):
32
 
        php_fh = open("/var/www/test.php", "w")
 
32
        php_fh = open("/var/www/html/test.php", "w")
33
33
        php_fh.write("<?php $world=\"Hello World!\"; echo $world; ?>")
34
34
        php_fh.close()
35
35