diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf59134..1956bd6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Integration Test on: pull_request: - branches: [TODO] + branches: [main2] jobs: do_test: diff --git a/example.py b/example.py index 7bcfc5b..894d667 100644 --- a/example.py +++ b/example.py @@ -17,23 +17,23 @@ def sum(self): """ Compute :math:`x + y`. """ - #return self.x + self.y + return self.x + self.y def difference(self): """ Compute :math:`x - y`. """ - #return self.y - self.x + return self.x - self.y def product(self): """ Compute :math:`x * y`. """ - #return self.x * self.y + return self.x * self.y def quotient(self): """ Compute :math:`x / y`. """ - #return self.x / self.y + return self.x / self.y