Skip to content

Commit fb80261

Browse files
Fix Star Wars spaceship name
1 parent 0473f1a commit fb80261

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/starwars/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def initialize():
2828

2929
# Yeah, technically it's Corellian. But it flew in the service of the rebels,
3030
# so for the purposes of this demo it's a rebel ship.
31-
falcon = Ship(id="4", name="Millenium Falcon", faction=rebels)
31+
falcon = Ship(id="4", name="Millennium Falcon", faction=rebels)
3232
falcon.save()
3333

3434
homeOne = Ship(id="5", name="Home One", faction=rebels)

examples/starwars/tests/test_mutation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_mutations():
4040
{"node": {"id": "U2hpcDox", "name": "X-Wing"}},
4141
{"node": {"id": "U2hpcDoy", "name": "Y-Wing"}},
4242
{"node": {"id": "U2hpcDoz", "name": "A-Wing"}},
43-
{"node": {"id": "U2hpcDo0", "name": "Millenium Falcon"}},
43+
{"node": {"id": "U2hpcDo0", "name": "Millennium Falcon"}},
4444
{"node": {"id": "U2hpcDo1", "name": "Home One"}},
4545
{"node": {"id": "U2hpcDo5", "name": "Peter"}},
4646
]

0 commit comments

Comments
 (0)