Skip to content

Commit

Permalink
removed unnecessary self.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Mar 11, 2024
1 parent b1017cf commit e7ae000
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/apps/borg/test_queen.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""Created on Mar 18, 2012."""

from __future__ import annotations

import unittest
Expand All @@ -18,8 +16,8 @@
class TestBorgQueen(unittest.TestCase):
def test_get_data(self):
drone = VaspToComputedEntryDrone()
self.queen = BorgQueen(drone, TEST_DIR, 1)
data = self.queen.get_data()
queen = BorgQueen(drone, TEST_DIR, 1)
data = queen.get_data()
assert len(data) == 1

def test_load_data(self):
Expand Down

0 comments on commit e7ae000

Please sign in to comment.