Skip to content

Commit 7a25e8a

Browse files
author
David Noble
committed
Bug fixes
1 parent eb5bba5 commit 7a25e8a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def exclude(path):
180180

181181
license="http://www.apache.org/licenses/LICENSE-2.0",
182182

183-
name="splunk-sdk",
183+
name="splunk-sdk-python",
184184

185185
packages = ["splunklib"],
186186

File renamed without changes.

tests/test_searchcommands_app.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ def setUp(self):
3939
def test_generating_command(self):
4040
self._run(
4141
'simulate', [
42-
'csv=%s' % TestSearchCommandsApp._data_file("input/sample.csv"),
42+
'csv=%s' % TestSearchCommandsApp._data_file("input/population.csv"),
43+
'duration=00:00:10',
4344
'interval=00:00:01',
44-
'rate=200',
45-
'runtime=00:00:10'],
45+
'rate=200'],
4646
__GETINFO__=(
47-
'input/sample.csv',
48-
'output/sample.csv',
47+
'input/population.csv',
48+
'output/samples.csv',
4949
'error/test_generating_command.log'),
5050
__EXECUTE__=(
51-
'input/sample.csv',
52-
'output/sample.csv',
51+
'input/population.csv',
52+
'output/samples.csv',
5353
'error/test_generating_command.log')
5454
)
5555
return

0 commit comments

Comments
 (0)