Skip to content

Commit c6550f1

Browse files
committed
Adjusted test
1 parent e897076 commit c6550f1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Hidden files
2+
.*
3+
14
*.py[cod]
25

36
# C extensions
@@ -39,4 +42,4 @@ output/*.html
3942
output/*/index.html
4043

4144
# Sphinx
42-
docs/_build
45+
docs/_build

tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_tuples(self):
2222
"multiple_values" : (1, 2)
2323
}
2424
output = {
25-
"multipleValues": (1, 2)
25+
"multipleValues": [1, 2]
2626
}
2727
self.assertEqual(camelize(input), output)
2828

0 commit comments

Comments
 (0)