@@ -35,7 +35,7 @@ def test_build_dependabot_file_with_bundler(self):
3535 - package-ecosystem: 'bundler'
3636 directory: '/'
3737 schedule:
38- interval: 'weekly'
38+ interval: 'weekly'
3939"""
4040 result = build_dependabot_file (repo , False , [])
4141 self .assertEqual (result , expected_result )
@@ -53,7 +53,7 @@ def test_build_dependabot_file_with_npm(self):
5353 - package-ecosystem: 'npm'
5454 directory: '/'
5555 schedule:
56- interval: 'weekly'
56+ interval: 'weekly'
5757"""
5858 result = build_dependabot_file (repo , False , [])
5959 self .assertEqual (result , expected_result )
@@ -77,7 +77,7 @@ def test_build_dependabot_file_with_pip(self):
7777 - package-ecosystem: 'pip'
7878 directory: '/'
7979 schedule:
80- interval: 'weekly'
80+ interval: 'weekly'
8181"""
8282 result = build_dependabot_file (repo , False , [])
8383 self .assertEqual (result , expected_result )
@@ -98,7 +98,7 @@ def test_build_dependabot_file_with_cargo(self):
9898 - package-ecosystem: 'cargo'
9999 directory: '/'
100100 schedule:
101- interval: 'weekly'
101+ interval: 'weekly'
102102"""
103103 result = build_dependabot_file (repo , False , [])
104104 self .assertEqual (result , expected_result )
@@ -114,7 +114,7 @@ def test_build_dependabot_file_with_gomod(self):
114114 - package-ecosystem: 'gomod'
115115 directory: '/'
116116 schedule:
117- interval: 'weekly'
117+ interval: 'weekly'
118118"""
119119 result = build_dependabot_file (repo , False , [])
120120 self .assertEqual (result , expected_result )
@@ -135,7 +135,7 @@ def test_build_dependabot_file_with_composer(self):
135135 - package-ecosystem: 'composer'
136136 directory: '/'
137137 schedule:
138- interval: 'weekly'
138+ interval: 'weekly'
139139"""
140140 result = build_dependabot_file (repo , False , [])
141141 self .assertEqual (result , expected_result )
@@ -156,7 +156,7 @@ def test_build_dependabot_file_with_hex(self):
156156 - package-ecosystem: 'mix'
157157 directory: '/'
158158 schedule:
159- interval: 'weekly'
159+ interval: 'weekly'
160160"""
161161 result = build_dependabot_file (repo , False , [])
162162 self .assertEqual (result , expected_result )
@@ -172,7 +172,7 @@ def test_build_dependabot_file_with_nuget(self):
172172 - package-ecosystem: 'nuget'
173173 directory: '/'
174174 schedule:
175- interval: 'weekly'
175+ interval: 'weekly'
176176"""
177177 result = build_dependabot_file (repo , False , [])
178178 self .assertEqual (result , expected_result )
@@ -188,7 +188,7 @@ def test_build_dependabot_file_with_docker(self):
188188 - package-ecosystem: 'docker'
189189 directory: '/'
190190 schedule:
191- interval: 'weekly'
191+ interval: 'weekly'
192192"""
193193 result = build_dependabot_file (repo , False , [])
194194 self .assertEqual (result , expected_result )
@@ -204,12 +204,12 @@ def test_build_dependabot_file_with_groups(self):
204204 - package-ecosystem: 'docker'
205205 directory: '/'
206206 schedule:
207- interval: 'weekly'
207+ interval: 'weekly'
208208 groups:
209- production-dependencies:
210- dependency-type: 'production'
211- development-dependencies:
212- dependency-type: 'development'
209+ production-dependencies:
210+ dependency-type: 'production'
211+ development-dependencies:
212+ dependency-type: 'development'
213213"""
214214 result = build_dependabot_file (repo , True , [])
215215 self .assertEqual (result , expected_result )
0 commit comments