Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Apr 15, 2020
1 parent fa8e4cd commit f3ec62c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/base/model_test_dataloaders.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from abc import ABC, abstractmethod


class EvalDataloaderVariations(ABC):
class TestDataloaderVariations(ABC):

@abstractmethod
def dataloader(self, train):
Expand Down
2 changes: 1 addition & 1 deletion tests/base/model_test_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import torch


class EvalStepVariations(ABC):
class TestStepVariations(ABC):
"""
Houses all variations of test steps
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/base/trainer_test_epoch_ends.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import torch


class EvalEpochEndVariations(ABC):
class TestEpochEndVariations(ABC):

def test_epoch_end(self, outputs):
"""
Expand Down

0 comments on commit f3ec62c

Please sign in to comment.