File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -706,20 +706,20 @@ def test_options(self):
706706 def test_options_ignores_space_prefixed_inline_comments (self ):
707707 text = lstrip ("""
708708 [supervisord]
709- logfile=/var/log/supervisor /supervisord.log ;(main log file;default $CWD/supervisord.log)
709+ logfile=/tmp /supervisord.log ;(main log file;default $CWD/supervisord.log)
710710 minfds=123 ; (min. avail startup file descriptors;default 1024)
711711 """ )
712712 instance = self ._makeOne ()
713713 instance .configfile = StringIO (text )
714714 instance .realize (args = [])
715715 options = instance .configroot .supervisord
716- self .assertEqual (options .logfile , "/var/log/supervisor /supervisord.log" )
716+ self .assertEqual (options .logfile , "/tmp /supervisord.log" )
717717 self .assertEqual (options .minfds , 123 )
718718
719719 def test_options_ignores_tab_prefixed_inline_comments (self ):
720720 text = lstrip ("""
721721 [supervisord]
722- logfile=/var/log/supervisor /supervisord.log\t ;(main log file;default $CWD/supervisord.log)
722+ logfile=/tmp /supervisord.log\t ;(main log file;default $CWD/supervisord.log)
723723 minfds=123\t ; (min. avail startup file descriptors;default 1024)
724724 """ )
725725 instance = self ._makeOne ()
You can’t perform that action at this time.
0 commit comments